我尝试设置hasMany关系,并希望在单个请求中将所有关联模型加载到我的主实体。 但这似乎不适用于" hasMany"继承的关系。 我有一个定义所有关系和字段的BaseModel和一个" normal"定义要加载的代理的模型。
这些是我的(相关)模型:
Ext.define('MyApp.model.BaseUser', {
"extend": "Ext.data.Model",
"uses": [
"MyApp.model.UserEmail",
"MyApp.model.Account"
],
"fields": [
{
"name": "name"
},
{
"name": "accountId",
"reference": {
"type": "MyApp.model.Account",
"role": "account",
"getterName": "getAccount",
"setterName": "setAccount",
"unique": true
}
}
]
"hasMany": [
{
"name": "emails",
"model": "MyApp.model.UserEmail"
}
],
});
Ext.define('MyApp.model.User', {
extend: "MyApp.model.BaseUser",
proxy: {
type: 'rest',
url : '/api/user',
reader: {
type: 'json',
rootProperty: 'data',
}
}
});
Ext.define('MyApp.model.UserEmail', {
extend: 'Ext.data.Model',
"fields": [
{
"name": "id",
"type": "int"
},
{
"name": "email",
"type": "string"
},
],
proxy: {
type: 'rest',
url : '/api/user/email',
reader: {
type: 'json',
rootProperty: 'data',
}
}
});
// MyApp.model.Account looks like MyApp.model.UserEmail
这是我服务器的回复:
{
data: [
{
name: 'User Foo'
accountId: 50
account: {
id: 50,
balance: 0
},
emails: [
{
id: 70,
email: 'hello@world.de'
}
]
}
]
}
"帐户"关系是正常的"正常"用户模型和我可以通过自动生成的方法user.getAccount()按照我的预期访问它。
现在我尝试使用自动生成的方法访问用户的电子邮件:
// user is of 'MyApp.model.User'
user.emails(); // store
user.emails().first(); // null
user.emails().count(); // 0
似乎"电子邮件" - 关联模型未加载到我的用户模型中。我是否以正确的方式访问它们? 我可以通过user.data.emails访问它们。但这是一个普通对象数组,而不是UserEmail-Objects。
有人能给我一些建议吗?嵌套加载是否支持无密钥关联?
亲切的问候, czed
编辑: 澄清了我的想法。