is there a javascript library with REST or REST-like (GET, POST, PUT and DELETE over http or https) capabilities?
|
|
|
You don't really need a specific client, it's fairly simple with most libraries. For example in jQuery you can just call the generic
You can replace |
|||||||||||||||||
|
|
While you may wish to use a library, such as the excellent jQuery, you don't have to: all modern browsers support HTTP very well in their JavaScript implementations via the XMLHttpRequest API, which, despite its name, is not limited to XML representations. Here's an example of making a synchronous HTTP PUT request in JavaScript:
This example is synchronous because that makes it a little easier, but it's quite easy to make asynchronous requests using this API as well. There are thousands of pages and articles on the web about learning XmlHttpRequest — they usually use the term AJAX – unfortunately I can't recommend a specific one. You may find this reference handy though. |
|||
|
|
|
jQuery has JSON-REST plugin with REST style of URI parameter templates. According to its description example of using is the followin: |
|||
|
|
|
For reference I want to add about ExtJS, as explained in Manual: RESTful Web Services. In short, use method to specify GET, POST, PUT, DELETE. Example:
If the Accept header is necessary, it can be set as a default for all requests:
|
||||
|
|
|
You can also use mvc frameworks like Backbone.js that will provide a javascript model of the data. Changes to the model will be translated into REST calls. |
|||
|
|
|
Dojo does, e.g. via JsonRestStore, see http://www.sitepen.com/blog/2008/06/13/restful-json-dojo-data/ . |
|||
|
|
|
abaaso is a RESTful framework I cooked up over the last year+. It conforms to the REST achitecture; providing multiple application states (HATEOAS) and security based around the responses. http://abaaso.com |
|||
|
|
|
You can use this jQuery plugin I just made :) https://github.com/jpillora/jquery.rest/ Supports basic CRUD operations, nested resources, basic auth
If you find bugs or want new features, post them in the repositories 'Issues' page please |
|||
|
|