我正在尝试从可以接受用户名或 ID 的路由加载 ember-data 用户模型。
我修改了 RESTAdapter 的 find 方法以将 JSON 响应中的 id 传递给didFindRecord
,但没有任何东西传递给我的视图。似乎 Ember 仍在尝试使用用户名作为模型的 id。
我的路由器是这样的:
App.Router = Em.Router.extend({
location: 'history'
, root: Em.Route.extend({
user: Em.Route.extend({
route: '/users/:slug'
, connectOutlets: function(router, context) {
router.get('applicationController').connectOutlet('user', context)
}
, serialize: function(router, context) {
return { slug: context.get('username') || context.get('id') }
}
, deserialize: function(router, params) {
return App.User.find(params.slug)
}
})
})
})
我的 find 方法如下所示:
var CustomAdapter = DS.RESTAdapter.extend({
find: function(store, type, id) {
var root = this.rootForType(type)
this.ajax(this.buildURL(root, id), 'GET', {
success: function(json) {
this.didFindRecord(store, type, json, json[root].id)
}
})
}
})
App.store = DS.Store.create({
revision: 6
, adapter: CustomAdapter.create({ namespace: 'api' })
})