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.
在最新的 emberjs 版本中,在 Ember 对象和 DS 中不再支持 toJSON 方法。有没有其他方法可以做到这一点?
当然,这就是实现序列化程序的目的。
var serializer = DS.RESTSerializer.create(); var post = App.Post.find(1); var json = serializer.serialize(post);
哲学是序列化方法应该独立于模型,因为它取决于适配器的选择。你只需要实例化你想要的,然后你可以根据需要应用它。