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

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -