我需要设计一个“生产”Ember.js 应用程序。如果我是正确的,ember 数据还没有准备好生产。
我需要知道管理 JSON 后端的最佳实践是什么,我对可以与 Ember 一起使用的众多方法感到迷茫。
假设我需要管理一个 Posts 对象列表。
我打算做什么:
- 创建 App.PostStore(扩展 Ember.object)
- 在 App.PostsController 中使用这个 App.PostStore 对象(扩展 Ember.ArrayController)
- PostsController 模型是对 App.PostStore.all() 方法的绑定
- PostController deleteMethod 正在调用 App.PostStore.delete(post) 方法
我在其他网站上看到的: - 创建一个 App.Post 对象 - 重新打开 App.Post 对象添加 all() 方法 - PostsController 模型是一个调用 App.Post.all() 函数的函数
有人可以分享这个基本用例的最佳实践吗?