0

我有以下模型:

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"
    }
}
4

1 回答 1

0

我认为你做错了。您应该使用带有模型的商店。请看“5. Lab 2: Creating the data layer”,这个小教程(http://ladysign-apps.com/appcamp/slides/#2014-07-14_13-50_00-670_Z)由 Lee 制作来自 Sencha 的 Boonstra。我始终遵循她的指导方针,并且从未在我的商店和数据绑定方面遇到任何问题。

此外,我确实注意到您使用的是 {session.lastName},如果商店加载正确,它实际上应该是 {lastName}。

于 2015-09-23T11:06:05.973 回答