I have created a model that is populated locally on the client, upon initializing the application.

The findQuery method always does an ajax request, for example:

App.store.find(App.Person, {name: 'John'})

even in the case where an App.Person with name:John has already been loaded. The find method which takes an id, looks at the local storage first. But I need to be able to perform queries by attribute.

My question is whether there exists a method for performing queries strictly on locally available data.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Use the DS.Store#filter method. A basic example is shown in the README on https://github.com/emberjs/data, section Filtering Loaded Records.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.