2

我想知道在 Ember.js 应用程序中将所有这些 XHR 调用保存在何处以用于非ember-data调用。

将 ember-data 与 REST 适配器一起使用时,事情变得简单明了,但如果:

  • 需要使用 WebSocket 进行连接
  • 需要进行一些调用以从 API 检索数据,但与应用程序中的任何模型无关

在控制器中编写 WebSocket/XHR 代码或创建一些适配器?

任何建议都赞赏如何布置 Ember.js 应用程序。

4

1 回答 1

0

Data access should occur in the model layer, either as class and instance methods of the models themselves, or in data access objects that the models collaborate with.

于 2013-09-03T03:25:36.807 回答