我正在开发一个使用express / MongoDB和Ember前端的应用程序。我无法访问Ember中的关系数据。
有三个集合:组织,用户和位置。
组织架构在mongoDB中存在:
const organizationSchema = new Schema({
creationDate: {
type: Date,
default: Date.now
}
});
用户和位置模式都有指向组织定义关系的标识符,例如
const userSchema = new Schema({
organization: {
type: Schema.ObjectId,
ref: 'Organization',
index: true,
required: true
},
...
在前端,在我的Ember'位置' route,我试图获取用户和组织之间异步关系的信息。我想用这个模型钩子获取组织ID:
tl; dr返回null
return this.store.findRecord("user", this.get("session.currentUser.id"))
.then(user => user.get('organization')).then(data => console.log("Show me the org:", data));
如果我能找到与当前用户关联的组织ID,我想,我可以使用this.store.findRecord()
找到/创建该ID的位置
问题是,console.log(data)
正在返回null
- 还有什么,我无法在Ember检查器中查看我的模型的任何关系数据。我只看到content: null
我错误地表示我的Mongo架构或Ember数据模型中的数据吗? Ember数据模型:
organization.js:
export default DS.Model.extend({
location: DS.hasMany('location', {async: true}),
user: DS.belongsTo('user', {async: true})
});
user.js:
export default DS.Model.extend({
organization: DS.belongsTo('organization', {async: true}),
email: DS.attr('string'),
firstName: DS.attr('string'),
lastName: DS.attr('string'),
registrationDate: DS.attr('date'),
fullName: Ember.computed('firstName', 'lastName', function() {
return `${this.get('firstName')} ${this.get('lastName')}`;
})
});
location.js:
export default DS.Model.extend(Validations, {
organization: DS.belongsTo('organization', {async: true})
});
目前,我对后端的GET用户路由的请求在其JSON有效负载中返回以下关系密钥:
{"organization":{"type":"organizations","id":"571974742ce868d575b79d6a"}}
在Ember数据中无法访问此信息,我做错了什么?对不起潜在的过度信息/一般noobery。已经坚持了很长一段时间。
编辑:此应用程序序列化程序用于修改JSON有效内容关系结构:
export default DS.JSONAPISerializer.extend({
serialize(snapshot, options) {
let json = this._super(...arguments);
// json.data.relationships.user = json.data.relationships.user.data;
json.data.relationships = _.reduce(json.data.relationships, function (rels, val, key) {
rels[key] = val.data;
return rels;
}, {});
return json;
}
});
编辑:findRecord的整个JSON有效负载响应('用户')
{"links":{"self":"/users/5719749a2ce868d575b79d6b"},"included":[{"type":"organizations","id":"571974742ce868d575b79d6a","links":{"self":"/organizations/571974742ce868d575b79d6a"},"attributes":{"creation-date":"2016-04-22T00:46:44.779Z"}}],"jsonapi":{"version":"1.0"},"data":{"type":"users","id":"5719749a2ce868d575b79d6b","links":{"self":"/users/5719749a2ce868d575b79d6b"},"attributes":{"email":"danthwa@gmail.com","first-name":"Daniel","last-name":"Thompson","registration-date":"2016-04-22T00:47:22.534Z"},"relationships":{"organization":{"type":"organizations","id":"571974742ce868d575b79d6a"}}}}
答案 0 :(得分:1)
您的回复已包含ID为organizations
的{{1}}记录。因此571974742ce868d575b79d6a
将使用该记录而不是获取新记录。
在余烬中,所有记录都必须完整!理解这一点非常重要。您必须记录所有属性或根本不记录。如果你需要拆分它,你需要使用两个模型。
因此,您可以在所包含的记录中包含所有属性,或者根本不加载它。