在EXTJS-4中,我没有将关联数据作为存储中的数组收集(加载事件)记录 - >数据 - >属性)

时间:2011-12-26 19:24:54

标签: extjs model associations

我需要一个属性作为模型中的集合,所以我尝试了关联但是当我在商店加载事件中查看“records”参数时,(Store-> Record - > Data - > Array Property)我得到了比如“[object Object]”,但不是数组集合。

当我在Record中观看“raw”属性时,我正在收集正确的数组。

我的代码

Ext.define('MyApp.model.user.examModl', {
    extend: 'Ext.data.Model',    
    idProperty :'examId',
    hasMany: 'MyApp.model.user.examTypeModl',    
            proxy:{          
        type: 'ajax',      
         api: {
                read: 'readExam.htm'          //url   to read data from db
            },
        reader: {
            type: 'json',
            root: 'res',
             idProperty: 'examId',
            successProperty: 'success',
            totalProperty: 'totalCount'
        },
        writer: {
                type: 'json',  
                 encode: true,
                root: 'res',
                writeAllFields : true
            }
    },
     fields:[{
                    name: 'examId',
                    type: 'string'
                },
                {
                    name: 'examName',
                    type: 'string'
                },
            {
                    name: 'examTypes',//It shoud be in array
                    type: 'string'            // is there any collection type to be specified ?
                }] ,
                associations: [
        {type: 'hasMany', model: 'MyApp.model.user.examTypeModl', name: 'examTypes'}
    ]
});

Ext.define('MyApp.model.user.examTypeModl', {
    extend: 'Ext.data.Model',    
    idProperty :'examTypeId',
    belongsTo: 'examTypes',  
     fields:[{
                    name: 'examTypeId',
                    type: 'string'
                },
                {
                    name: 'examId',
                    type: 'string'
                },              
                {
                    name: 'examType',
                    type: 'string'
                },

                { name: 'active',
                    type: 'bool'

                }]    
});

我的json回应将是: -

{"res":[{"examId":1,"examName":"mathematics","examTypes":[{"examTypeId":1,"examId":"1","examType":"MCQ","active":true}]}],"totalCount":1,"success":true}

在我的商店加载事件中,当我看“记录”参数时,

 records[1].data.examTypes="[object Object]"

as like object , but iam getting in raw property

 records[1].raw.examTypes  = proper array collection.

我不知道我哪里出错或任何财产遗失/错误分配。

1 个答案:

答案 0 :(得分:1)

尝试在字段定义中使用{ name: 'examTypes', type: 'auto' }。它不会将examTypes转换为记录,但它保持数组不变。