Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我进入App.Model.find()Chrome 控制台时,我都必须执行一系列步骤来查看实际值:
App.Model.find()
类 --> _ember###_meta:元 --> 值 --> 内容
有更快的方法吗?
Calling toArray() on a collection is a handy way to do that.
toArray()
Ember Data 0.13
console.log( App.Model.find().toArray() );
Ember Data 1.0.beta.1
console.log( this.store.find('model').toArray() );