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

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

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -