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.
这可能是一个常见问题,但如何从 Ember.Data 模型中获取不透明哈希?
这取决于您当时的 Ember 版本。最近发生了很多变化,但它应该是这三种方法之一:
object = App.MyModel.find(1) object.toString() object.toData() object.serialize() //latest version