我正在开发一个 Ember 应用程序。我从 localhost 上的同一服务器提供 API 和 ember 应用程序。
我很确定我的 API 符合 Ember 规范(尽管我不确定,因为这里和这里给出了相互冲突的信息。第二个站点链接到这篇Ember 博客文章,应该是 Ember 约定的形式化) . 我的 API 遵循第二个链接的样式,因此请求host/api/users/1
,例如,返回:
{
"users": [{
"username": "jojo"
etc..
}]
}
我知道我的 API 正在工作,因为我可以使用curl
. 我的问题是 Ember 数据似乎没有发出请求。Chrome 开发人员工具网络选项卡显示在我运行时没有发送加载数据的请求App.User.find()
。但是我确实得到了这个:
这是我定义商店的咖啡脚本代码:
App.Store = DS.Store.extend
revision: 13
url: 'http://localhost:9292/'
adapter: DS.RESTAdapter
DS.RESTAdapter.reopen
namespace: 'api'
这里是我为“用户”定义模型、控制器和路由的地方:
App.UsersRoute = Ember.Route.extend
model: ->
App.User.find()
App.UsersController = Ember.ArrayController.extend()
App.User = DS.Model.extend
username: DS.attr 'string'
url: DS.attr 'string'
projects: DS.hasMany 'App.Project'
query_instances: DS.hasMany 'App.QueryInstance'
我在这里错过了一些重要的事情吗?一般来说,我是 Ember 和客户端开发的新手——也许这里有明显的解决方案,但我不知道它们。如果有人能提供一些关于调试 Ember 的提示,我将不胜感激。