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

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -