具有新记录的Store.sync()不会导入服务器生成的字段作为响应

时间:2013-04-25 16:05:46

标签: extjs extjs4 extjs4.1

我有一个启用了行编辑的网格。当我添加一行并调用store.sync()时,服务器会在该记录上生成某些字段,并在响应中返回完整的记录信息。但是,除了id之外,ExtJS似乎没有更新其记录副本。有没有办法让它做到这一点,还是我需要编写自定义代码?

这是网格控制器的摘录:

doneEdit: function (editor, e, eOpts) {

    var me = this;

    //
    // Set up loading mask on grid during update (if record changed and is valid)
    //
    if (e.record.dirty && e.record.isValid()) {
        e.grid.showUpdatingMask();

        e.store.sync({
            success: me.onSaveSuccess,
            failure: me.onSaveFailure,
            scope: me
        });
    }
    else {
        me.cancelEdit(editor, e, eOpts);
    }
},

//
// onSaveSuccess() is only used for row editor grids
//
onSaveSuccess: function (batch, options) {

    var me = this,
        grid = me.getGrid();

    grid.getStore().filter([]); // re-run whatever filters already exist, and sort.

    grid.hideMask();

    // update read-only active store if specified by sub-class
    if(me.activeStore) {
        // $TODO: handle load failure
        me.activeStore.load();
    }
},

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题(Ext 4.2.1)。原因是我忘记在阅读器上设置idProperty默认为“id”,我的是“_id”。 Ext无法更新记录,因为它无法识别匹配的ID。现在它就像一个魅力。

因此请确保响应符合读者期望的格式(root,idProperty,模型定义,......)