0

皆さん、こんばんは

メソッドを更新すると、「tipoNo」や「pai」などのすべてのモデル項目が保存されません。誰かが私に何ができるか知っていますか?

リクエストペイロード

これは、リクエストで送信された情報です。

{"parentId":1,"nome":"qwfqwfqw"}

モデル:

私のモデルのフィールド。

fields : [ {
    name : 'id',
    type : 'long'
},{
    name : 'pai',
    type : 'long'
}, {
    name : 'nome',
    type : 'string'
}, {
    name : 'tipoNo',
    type : 'string'
}, {
    name : 'leaf',
    type : 'boolean',
    convert : function(value, record) {
        var no = record.get('tipoNo');
        return (no == "CLIENTE" ? true : false);
    }
} ],

プロキシー

サーバー上の必要な情報へのプロキシ。

proxy : {
    type : 'rest',
    url : Webapp.link('node'),
    reader : {
        type : 'json',
        root : 'nodes',
        idProperty : 'id'
    },
    writer : {
        type : 'json',
        writeAllFields : false
    }
}

コントローラーの方法

/**
 * Rename
 * 
 * @param {Ext.grid.plugin.CellEditing} editor
 * @param {Object} e                            
 */
updateList : function (editor, e) {
    var node = e.record;
    node.save({
        success: function(list, operation) {
            console.log("updated");
        },
        failure: function(list, operation) {
            var error = operation.getError(),
                msg = Ext.isObject(error) ? error.status + ' ' + error.statusText : error;

            Ext.MessageBox.show({
                title: 'Notificação',
                msg: msg,
                icon: Ext.Msg.ERROR,
                buttons: Ext.Msg.OK
            });
        }
    });
},
4

2 に答える 2

0

プロキシ構成を見てください。JSON ライターのwriteAllFieldsプロパティが false に設定されています。Ext.data.writer.Jsonドキュメントから:

True to write all fields from the record to the server.
If set to false it will only send the fields that were modified.

そのため、変更されていないフィールドはサーバーに送り返されません。すべてのプロパティをサーバーに送信する場合は、true に設定writeAllFieldsして (または true がデフォルトであるため、単に削除して)、再試行してください。

于 2012-09-10T17:19:55.787 に答える
0

この場合の解決策:

/**
 * Executa a edição
 * 
 * @param {Ext.grid.plugin.CellEditing} editor
 * @param {Object} e                            
 */
updateList : function (editor, e) {
    var node = e.record;
    var me = this;
    var nodeTree = me.getNodeTree();

    var method = (node.data.id !== undefined ? 'PUT' : 'POST');
    var post = {
            id: (node.data.id !== undefined ? null : node.data.id),
            nome: node.data.nome,
            pai: (node.data.parentId == -1 ? null : node.data.pai),
            tipoNo: node.data.tipoNo
    };
    Ext.Ajax.request({
        url: Webapp.link("node"),
        headers: { 'Content-Type': 'application/json' }, 
        jsonData: post,
        method: method,
        success: function(response){
            var text = response.responseText;
            console.log(text);
            nodeTree.refreshView();
        }
    });

},
于 2012-09-11T14:27:10.250 に答える