ExtJS 6 在存储同步的回调中访问 messageProperty

ExtJS 6 access messageProperty in store sync's callback

我想在同步 ExtJS 网格后在 UI 中显示来自我的服务器的消息。以下是其中的一段摘录:

this.store.sync({
        callback: function (records, operation, success) {
          // messageProperty accessing code
        },
        success: function (batch, options) {
          // messageProperty accessing code
        },
        failure: function (batch, options) {
        }
    });

这是商店定义的一部分:

 proxy: {
    headers: { 'Accept': 'application/json' },
    limitParam: undefined,
    pageParam: undefined,
    startParam: undefined,
    paramsAsJson: false,
    type: 'ajax',        
    // ...
    reader: {
        type: 'json',
        rootProperty: 'Data',
        messageProperty: 'Message'
    },
    // ...
},

这是从服务器返回的一些数据(省略了数组中的数据:

{
 "Data":[
 ],
 "Message":"Success!"
}

应用程序似乎没有读取数据 属性 的问题(即我的网格工作正常),但我无法在任一回调中访问消息 属性或同步方法的成功事件。这是错误消息:

Uncaught TypeError: Cannot read property 'Message' of undefined(…)

createAccessor: (function () {
    var re = /[\[\.]/;
    return function (expr) {
        var me = this,
            simple = me.getUseSimpleAccessors(),
            operatorIndex, result, current, parts, part, inExpr, isDot, isLeft, isRight, special, c, i, bracketed, len;
        if (!(expr || expr === 0)) {
            return;
        }
        if (typeof expr === 'function') {
            return expr;
        }
        if (!simple) {
            operatorIndex = String(expr).search(re);
        }
        if (simple === true || operatorIndex < 0) {
            result = function (raw) {
                return raw[expr];  <-------- This is where it goes wrong at some point
            };
        } 

如果我通过这段代码进行调试,在某些时候原始变量会失去它的值,这会给出预期的未定义错误消息。我的问题是我如何能够在 Ext 6 存储的回调函数或成功函数中检索消息 属性?

在 ExtJS 6 中,Sencha 已将 keepRawData 的默认值更改为 false。如果将其改回 true,一切都应该再次按预期工作。 Sencha 文档告诉我们有内存泄漏的可能性,但我还没有遇到过这样的问题。

您可能不必更改默认的 keepRawData 值 在 ExtJS 6 中,您还可以使用操作参数访问 messageProperty:

operation.error;

operation.getError();

唯一的问题是如果成功参数为 true,则不会设置错误 属性。 在这种情况下,我猜他们希望您使用 records 参数,因为那是来自您服务器的数据所在的位置。