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 应用程序中的多个位置使用的提要阅读器。
在这种情况下,我决定使用“视图”或“组件”。一个问题是在这两种情况下,我都必须将数据保留在“视图”或“组件”之外。我必须触发控制器请求最新数据,控制器更新存储在模型中的数据。这种方法的问题是获取和更新模型代码应该复制到所有使用提要阅读器的地方。有没有办法解决这个问题?
如果代码可以通用,请创建一个 mixin,然后您可以将该 mixin 添加到控制器中。
http://emberjs.com/api/classes/Ember.Mixin.html