Ext 4.2使用代理保存树

时间:2014-06-06 11:26:20

标签: extjs proxy

当我使用insertChild()或Sync()时,代理只用_dc param将GET发送到服务器,我应该怎么做才能通过代理保存我的树?

编辑:添加编写器,现在分机执行POST但没有数据 写听者也没有打电话

Ext.define('App.model.FileTree',
{
    extend : 'Ext.data.Model',
    fields : [ 
        {name : 'id', type: 'string'},
        {name : 'name', mapping:'name', type: 'string'},
        {name : 'text', type: 'string'},

    ]
});
Ext.define('App.store.FileTree', {
    extend: 'Ext.data.TreeStore',
    alias:'filestore',
    model : 'App.model.FileTree',
    proxy: {
        actionMethods: {
            create: 'POST',
            destroy: 'DELETE',
            read: 'GET',
            update: 'POST'
        },
        type: 'ajax',
        url : '/app/store/FileTree.php',
        reader: {
            type: 'json'
        },
        writer: {
            type: 'json',
            nameProperty: 'mapping'
        }
    },
    listeners : {
        write: function(store, operation, opts){
            Ext.each(operation.records, function(record){
                if (record.dirty) {
                    record.commit();
                }
            });
        }
    }
});

尝试像孩子一样添加孩子:

var tree = Ext.ComponentQuery.query('filetree')[0];

var record = tree.getSelectionModel().getSelection()[0];

record.appendChild({text:'test',name:'test',id:2,leaf:true});

tree.store.sync();

1 个答案:

答案 0 :(得分:0)

在代理中配置writer。没有编写器代理不知道该怎么做。

我在Ext 5.0中有一棵树(但它也在Ext 4.x中工作),树模型以这种方式配置:

Ext.define('At.model.ContinentModel',{
     extend:'Ext.data.TreeModel'
    ,alias:'model.continentmodel'
    ,idProperty:'id'
    ,fields:[
         {name:'text', type:'string', persist:true}
        ,{name:'iconColor', type:'string'}
    ]
    ,proxy:{
         type:'ajax'
        ,url:'resources/service.php/tree/read/1/'
        ,writer:{
             type:'json'
            ,allowSingle:false
            ,encode:true
            ,rootProperty:'data'
        }
    }
});

树存储配置为autoSync:truetext字段中的更改会触发服务器请求,如下所示:

Server request