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.
我想对“DS.MODEL.FIND”使用 didLoad 回调,但在下面的网页中找不到“DS.MODEL.FIND”方法。也找不到“findQuery”,谢谢。
http://emberjs.com/api/data/classes/DS.Model.html
find现在应该从商店调用类似的方法。
find
例如,如果你有一个模型App.Post,你可以在路由或控制器中查找 id 为 1 的记录:
App.Post
this.store.find('post', 1)
而不是你在 0.13 中的方式:
App.Post.find(1)
另外,我建议使用最新版本,因为自 beta 2 以来已经有很多修复。