ember.js - querying for records syntax, returns AdapterPopulatedRecordArray which I have no idea how to use -


i'm using querying records functionality guides here:

http://emberjs.com/guides/models/finding-records/

my route looks this:

app.catchallroute = ember.route.extend({ model: function(params) { var _self = this; return _self.store.find('article', { urlsegment: params.url }); } });

unlike times when i'm not passing object 2nd param find, end adapterpopulatedrecordarray have no idea data template. have solution this?


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -