You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was working fine with Ember 1.13.10 and Ember Data 1.13.12, doesn't seem to work with Ember 2.1.0 and Ember data 2.1.0.
If I navigate to http://localhost:4200/orders then it works fine and I see 6 orders come in from the api and the page displays information on all seven orders.
If I first navigate to http://localhost:4200/members/1234/orders, then I correctly see 3 orders from that member account. However, if I now press the link to goto http://localhost:4200/orders it only displays the same 3 orders. The api is deffinitely hit again and it correctly returns 6 orders.
I put a breakpoint at the end of Ember Data's _findAll method and its returning an array with 6 items from the return store.peekAll(modelName); line. Where else could things be going wrong? (More than happy to debug myself)
Originally posted against Ember emberjs/ember.js#12488.
This was working fine with Ember 1.13.10 and Ember Data 1.13.12, doesn't seem to work with Ember 2.1.0 and Ember data 2.1.0.
If I navigate to http://localhost:4200/orders then it works fine and I see 6 orders come in from the api and the page displays information on all seven orders.
If I first navigate to http://localhost:4200/members/1234/orders, then I correctly see 3 orders from that member account. However, if I now press the link to goto http://localhost:4200/orders it only displays the same 3 orders. The api is deffinitely hit again and it correctly returns 6 orders.
I put a breakpoint at the end of Ember Data's _findAll method and its returning an array with 6 items from the
return store.peekAll(modelName);
line. Where else could things be going wrong? (More than happy to debug myself)This is my orders route:
This is my account (member) model:
This is my order model:
The text was updated successfully, but these errors were encountered: