Which is created in store, but not saved to my server side.
Now I went ahead, can i access the above unsaved record in another controller?
Actually, am accepting details on two pages(first page- accepting few details of item, next page- more details of item).
Now I have used localStorage of browser to store the details entered on first page, and on 2nd page created record and merge details?.. but due to this the changes are not getting updated when i go back and add changes(no proper binding with values as part of data entered on first page shown on 2nd page.)
This is my first ember app… Anyone pls help me to fix this…
Thanks.
Correct and not. I was thinking about the original question and it could be solved with only Pouch and storing the end result on the backend. PouchDB works out-of-the box without a CouchDB backend. Just don’t sync.
In Ember.Data it is also possible to use this. Just create a record and you will get the record back via store.find(model, properties) or store.findAll(model) - persisted or not.