Extjs有一个联想

时间:2012-07-19 09:06:22

标签: javascript model-view-controller extjs model associations

我有Person模型,它包含id,first_name,last_name等和 merital_id 字段。我也有Merital模型只包含2个字段:id和title。 服务器响应JSON如:

{
    success: true,
    items: [
        {
            "id":"17",
            "last_name":"Smith",
            "first_name":"John",
            ...
            "marital_id":1,
            "marital": {
                "id":1,
                "title":"Female"
            }
        },
        ...
    ]
}

那么如何将我的模型与关联联系起来呢?我仍然可以在我的column.renderer中使用record.raw.merital.title,但我不能在像{last_name} {first_name}({merital.title})这样的模板中使用这些字段。 我需要使用什么样的关联王,我尝试使用belongsTo,但是当我尝试使用record.getMarital()时,我得到一个错误“记录中没有这样的方法”。

我使用extjs 4

1 个答案:

答案 0 :(得分:7)

您应该使用ExtJS模型和关联,特别是HasOne关联。

文档:

http://docs.sencha.com/ext-js/4-1/#!/api/Ext.data.association.HasOne

示例:

http://jsfiddle.net/el_chief/yrTVn/2/

Ext.define('Person', {
    extend: 'Ext.data.Model',
    fields: [
        'id',
        'first_name',
        'last_name'
        ],

    hasOne: [
        {
        name: 'marital',
        model: 'Marital',
        associationKey: 'marital' // <- this is the same as what is in the JSON response
        }
    ],

    proxy: {
        type: 'ajax',
        url: 'whatever',
        reader: {
            type: 'json',
            root: 'items' // <- same as in the JSON response
        }
    }
});