Tagged Questions
0
votes
2answers
358 views
Loading external data into Ember template using ember-data/DataStore
Here is what I'm tyrnig to do:
Make ajax request to retrieve JSON data from a PHP script
Insert that information into DataStore Models
Store those models within a controller
Display the information ...
0
votes
2answers
110 views
Ember - Abort ajax request
I want to know how to abort a request.
For example, I issue App.MyModel.find() and later i want to cancel/abort it before it returns from server. I would expect something like this:
var res = ...
0
votes
1answer
422 views
Ember.js ember-data and cross-domain ajax requests
folks! Any examples of using ember-data to store data getted from remote server with cross-domain ajax request? Now I have this, but...
TravelClient.Tour = Ember.Object.extend({
});
...
0
votes
1answer
295 views
How to get HTTP StatusCodes in ember-data
When I invoke
App.store.createRecord(App.User, { name: this.get("name") });
App.store.commit();
how do I know if its successful and how to wait for the asyn message?
