我有以下模型:
Ext.define('myApp.model.tool.SpecialModel', {
extend: 'Ext.data.Model',
fields: [
{name: 'id', type: 'string'},
{name: 'loginName', type: 'string'},
{name: 'firstName', type: 'string'},
{name: 'lastName', type: 'string'},
],
proxy: {
type: 'rest',
url: '/special/url',
reader: {
type: 'json'
}
}
});
而这个 ViewModel:
Ext.define('myApp.view.support.MySpecialViewModel', {
extend: 'Ext.app.ViewModel',
alias: 'viewmodel.myspecial',
stores: {
session: {
model: 'myApp.model.tool.SpecialModel'
}
}
});
而这个观点:
Ext.define('myApp.view.support.MySpecialView', {
extend: 'Ext.toolbar.Toolbar',
viewModel: 'myspecial',
config: {
items: [
{
xtype: 'button',
bind: '{session.lastName}',
menu: [
{
text: 'My Profile',
handler: 'onProfileClick'
}
]
}
]
},
});
在呈现视图时,商店已经被填满。为什么按钮不显示指定 ViewModel 的 lastName?当我尝试使用内联数据时,它可以工作。
提前致谢。
编辑:当我将按钮绑定更改为以下
...
xtype: 'button',
bind: 'Hello, {session.lastName}',
menu: [
{
text: 'My Profile',
handler: 'onProfileClick'
}
]
...
甚至不显示硬编码的字符串。我在这里想念什么?
编辑2:
这是我的json数据:
{
"privileges": {
"privManageCustomer": true,
"privManageCustomerAccount": true,
},
"user": {
"accountLocked": false,
"accountLockedAt": null,
"customerId": "12123213213123",
"email": "213213",
"failedLogins": 0,
"firstName": null,
"id": "123678213621783",
"languageId": "de",
"lastFailedLogin": null,
"lastLogin": null,
"lastName": "Whatever",
"loginName": "test123"
}
}