0

这是我的代码

        var store = {
            roles_store: new Ext.data.Store({
                        autoLoad: false,
                        proxy: new Ext.data.HttpProxy({
                                                        url: 'a/b/c',
                                                      }),
                        remoteSort: true, 
                        baseParams: {

                                    },
                        reader: new Ext.data.JsonReader({
                                                totalProperty: 'total',
                                                root: 'root',
                                                fields:['roles']                
                                                        }),

            })
        };

这是我的 json

{"total":3,"root":[{"roles":"A"},{"roles":"B"},{"roles":"C"}]}

如果我想将数据添加到 Ext.data.Store。我能怎么做?

(PS:对不起,我的英文不好。而我的extjs是:http://docs.sencha.com/ext-js/3-4/#!/api/Ext.data.Store-method-addSorted)

4

1 回答 1

2

这应该有效:

Ext.define('roles', {
    extend: 'Ext.data.Model',
    fields: [
        {name: 'roles', type: 'string'}
    ]
});

var myStore = Ext.create('Ext.data.Store', {
    model: 'roles',
    proxy: {
        type: 'ajax',
        url : 'path/to/data/test.json',
        reader: {
            type: 'json',
            root: 'root',
            totalProperty: 'total'
        }
    },
    autoLoad: true
});

在此处查看示例:http: //docs.sencha.com/ext-js/4-0/#! /api/Ext.data.Store

对于 v3.4:

var store = new Ext.data.JsonStore({

    autoDestroy: true,
    url: 'path/to/data/test.json',
    storeId: 'myStore',
    autoLoad: true,
    idProperty: 'roles',
    root: 'root',
    fields: ['roles'] 
});

您需要使用 jsonstore: http ://docs.sencha.com/ext-js/3-4/#!/api/Ext.data.JsonStore

于 2012-11-21T09:51:13.837 回答