Working with ember-data is amazing, it steps up to most of my data handling challenges out of the box. However, there's one issue I've been digging through Google searches trying to find an answer for.
Say I fire off a GET request to the server to find a record, App.Fruit.find('banana');. If this record doesn't exist, the backend issues back a status code (404) to the client.
Now, at any given time later on, the 'banana' record might be created by somebody else and thus exist in the database on the server.
However, at this point, any further calls to App.Fruit.find('banana'); does not issue a new GET request to the server.
I've tried calling both
banana = App.Fruit.find('banana');and thenbanana.get('transaction').rollback();when the 404 is returned from the server.I've also tried
App.store.get('defaultTransaction').rollback();just to see if that worked.I've even attempted setting the transaction state to 'deleted' - like so:
banana.get('stateManager').goToState('deleted');- hoping it would make theApp.Fruit.find('banana');issue a new GET request afterwards. Unfortunately, it did not.
My question is: how do I make ember-data issue a GET request again if a previous request didn't return any data (404)?
isLoadedyou can manually set that to false? – Mehul Kar Nov 13 '12 at 0:28banana = App.Fruit.find('banana');, a call tobanana.get('stateManager.currentPath');results in "rootState.loading". I can't seem to move it away from this state. :/ – Kasper Tidemann Nov 13 '12 at 11:03