From all the various examples of Ember.js, I have not been able to figure out if there is a default method in Ember.js to do REST AJAX calls. Many examples build their own interfaces for CRUD operations. I even tried to sift through the code to find any reference to AJAX calls but came up with nothing.

So, my question is, is there a default implementation of REST API in Ember.js. If yes, how do I use it? Also if, for a specific application, I want to build custom CRUD methods, where do I plug these into Ember.js?

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

While learning Ember, I decided to create a very simple Ember REST library. I also wrote an example Rails CRUD app.

My goals were to keep this project as simple as possible, while still including error handling and validation. Ember REST is certainly much leaner than Ember Data and Ember Resource, and I hope you'll find the code well commented and accessible.

link|improve this answer
I like it! Nice and simple without any black magic taking place in the background. – Brandon Jan 19 at 22:36
Thanks Brandon! I would say that "no black magic" was the precise goal of this lib :) – Dan Gebhardt Jan 20 at 2:31
1  
I've rewritten it in CoffeeScript (mostly to know what it is doing), if anyone is interested: github.com/SSSSSmokey/ember-rest.coffee – Brandon Jan 20 at 9:29
Thanks, Dan. This fits what I need. Clean and simple implementation! – Nilesh C Feb 1 at 11:53
feedback

It seems that Ember Data is what you are looking for. It is part of emberjs organiztion in GitHub.

link|improve this answer
This is useful. From the code, it seems it was added recently and is alpha quality right now. – Nilesh C Dec 28 '11 at 3:57
feedback

There is a Ember Resource library aiming REST JSON interfaces. It provides Ember.Resource class with save(), fetch() and destroy() operations that could be easily overriden. Looks like it should be more mature than Ember Data for now.

link|improve this answer
feedback
So, my question is, is there a default implementation of REST API in Ember.js.

That question makes no sense. REST is standard http. The REST part means that the url of the request has semantics. So if you make a GET request on the endpoint .../somemodel/ that means "Get a list of somemodel instances". If you do a GET request to .../somemodel/2 that means get me the instance of somemodel with id 2. If you do a POST to .../somemodel that means create an instance of somemodel.

There is no "default implementation of REST API". REST depends on the urls you use to interact with data, and the urls depend on your application. That said, all you really need is standard xhrs. Ember (if I remember from the lists correctly when it was SC2) uses jquery, so you just make standard ajax requests, defining a URL scheme that Represents your application model. see this

https://github.com/emberjs/ember.js/blob/master/packages/jquery-1.6.2/lib/main.js and search for ajax:

EDIT

In response to your comment, at least for SC, you always end up writing the requests. So you will always write your GET, POST, PUT, DELETE requests yourself. I personally try to not use the datasource abstraction, and just create an API file (or multiple files) that contains the interactions with the server. If you use a datasource, you still end up writing the requests in the appropriate places. so the answer is no.

Ember's data module seems to be based on the SC store, so this probably applies to ember, but I am not sure...

link|improve this answer
1  
I am aware of how REST works. Been through the whole kaboodle in Rails. What I meant was this -- just like the save(), fetch(), destroy() operations in Backbone.js, are there methods I can use in Ember.js for REST CRUD operations? Also, is there something like Backbone.sync() that I can override to implement custom CRUD operations? – Nilesh C Dec 28 '11 at 3:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.