I need to do an HTTP GET request in JS, what's the best way to do that?
Thanks
EDIT: I need to do this in a Mac OS X dashcode widget
|
I need to do an HTTP GET request in JS, what's the best way to do that? Thanks EDIT: I need to do this in a Mac OS X dashcode widget |
|||||||||
|
|
|||||||||||||
|
|
What the heel about all those fancy libraries, JavaScript has it built-in:
|
|||||||||||||
|
|
Here is code to do it directly with JavaScript. But, as previously mentioned, you'd be much better off with a JavaScript library. My favorite is jQuery. In the case below, an ASPX page (that's servicing as a poor man's REST service) is being called to return a JavaScript JSON object.
|
|||
|
|
|
A version without callback
|
|||||||||||||
|
|
Prototype makes it dead simple
|
|||
|
|
IE will cache URLs in order to make laoding faster, but if you're, say, polling a server at intervals trying to get new information, IE will cache that URL and will likely return the same data set you've always had. Regardless of how you end up doing your GET request - vanilla JavaScript, Prototype, jQuery, etc - make sure that you put a mechanism in place to combat caching. In order to combat that, append a unique token to the end of the URL you're going to be hitting. This can be done by:
This will append a unique timestamp to the end of the URL and will prevent any caching from happening. |
|||||||||
|
|
In your widget's Info.plist file, don't forget to set your |
|||
|
|
|
I'm not familiar with Mac OS Dashcode Widgets, but if they let you use javascript libraries and support XMLHTTPRequests, I'd use jQuery and do something like this:
|
|||
|
|
|
The best way is to use AJAX ( you can find a simple tutorial on this page Tizag). The reason is that any other technique you may use requires more code, it is not guaranteed to work cross browser without rework and requires you use more client memory by opening hidden pages inside frames passing urls parsing their data and closing them. AJAX is the way to go in this situation. That my two years of javascript heavy development speaking. |
|||
|
|
|
If you want to use the code for a Dashboard widget, and you don't want to include a JavaScript library in every widget you created, then you can use the object XMLHttpRequest that Safari natively supports. As reported by Andrew Hedges, a widget doesn't have access to a network, by default; you need to change that setting in the info.plist associated with the widget. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.