I'm looking at Ember.js and have been reading the docs to try and understand how to use it. I get it (pretty well), except for one thing. To my way of thinking in the MVC pattern, the Model is the repository for data in the application. I can see how that works for client side data in Ember.js. What I don't get is how to tie that data back to the server so that if data changes at the client, the changes are updated in server. And vice versa. I've been doing this by in in my web applications making Ajax/JSON calls to back and forth to the server, I'm just not getting how to do that using Ember.js.
|
Unfortunately the website is very much short of proper docs. However, digging just a bit around emberjs github account I have found this: https://github.com/emberjs/data:
Read the README file and search for I understand your frustration and better docs with more comprehensive examples wouldn't hurt at all. UPD. After googling a bit more and looking at various examples, I'd suggest looking into this article and working it out from there. What you want is to have a collection of models that will know how to sync with server side, possible example code is:
You'd then call UPD.2 You should definitely check out this article on Ember.js that goes deeper into server-client communication with Ember and mentions emberjs/data as well: trek.github.com |
|||||
|
|
In Ember.js, the "model" contained in the |
|||||||||||||
|
|
I like to picture Ember.js in pairs like this
Basically that means you load up your controller (single or array) with a model and can now easily model the processes working on that model (i.e. the stuff that does not touch the model in its core/data) in your controller. For an example blog application you would describe the Post in the model and add something like that for the controller
Now you can interact with the represenation of the model in terms of frontend thinking through the controller. Expanding a post or not does not change the model, only changing the data does. In terms of reloading data from the server, I have two answers for you
|
|||
|
|
