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
Post a Comment