如何从ExtJs 4中的商店访问嵌套模型

时间:2011-04-26 18:11:44

标签: extjs extjs4

我刚刚下载了ExtJs 4的最终版本,我正在尝试使用新的Model方法实现一些功能。

例如,我有一个名为SetupModel的模型,它有2个嵌套模型Users,Reports。 我创建了新的商店,并设置了store = SetupModel的Model属性。

问题是 - 如何在将数据加载到商店后访问我的嵌套属性?

我需要像myStore.data.Users()这样的东西,但是不正确。

有什么想法吗?

1 个答案:

答案 0 :(得分:22)

定义模型时,需要提供与嵌套模型的必要关联。因为,您还没有提供代码。这是一个例子:

我的产品型号:

Product = Ext.define('Product',{
    extend: 'Ext.data.Model',
    fields: [
        {name: 'id', type: 'int'},
        {name: 'user_id', type: 'int'},
        {name: 'name', type: 'string'},
        {name: 'price', type: 'float'}
    ],
    proxy: {
        type: 'localstorage',
        id: 'products'
    }
});

我的用户模型:

User = Ext.define('User',{
    extend: 'Ext.data.Model',
    fields: [
        {name: 'id',       type: 'int'},
        {name: 'name',     type: 'string'},
        {name: 'gender',   type: 'string'},
        {name: 'username', type: 'string'}
    ],
    associations: [
        {type: 'hasMany', model: 'Product', name: 'products'}
    ],
    proxy: {
        type: 'localstorage',
        id  : 'users'
    }
});

现在,如果您有一个包含产品的User模型实例。以下是您访问产品的方法:

var productStore = user.products();

请注意,user.products()会返回Ext.data.Store。现在,您可以遍历或过滤或查找产品记录。以下是我获得第一个产品名称的方式:

productStore.getAt(0).get('name');