ember.js - How to display the value results of Ember find App.Model.find() in console? -
whenever enter app.model.find() in chrome console have series of steps see actual values:
class --> _ember###_meta: meta --> values --> content
is there faster way?
calling toarray() on collection handy way that.
ember data 0.13
console.log( app.model.find().toarray() ); ember data 1.0.beta.1
console.log( this.store.find('model').toarray() );
Comments
Post a Comment