gpt4 book ai didi

asp.net - 分机JS 4 : JavaScript Exception "TypeError: Ext.resetElement is undefined" in Ext JS version 4. 1.1

转载 作者:行者123 更新时间:2023-12-02 18:24:49 24 4
gpt4 key购买 nike

Ext JS 4.1.1 破坏了我使用 ASP.NET 设置的代理。我不得不切换回 4.1.0 版本来解决该问题。只是想我会把这个问题扔在那里,直到 Sencha 解决为止。

JavaScript 异常:

“TypeError:Ext.resetElement未定义”==>“...s.styleProxyEl ||(Ext.AbstractComponent.prototype.styleProxyEl”==> ext-all-debug.js(第26960行)

enter image description here

getStyleProxy: function(cls) {

var result = this.styleProxyEl || (Ext.AbstractComponent.prototype.styleProxyEl = Ext.resetElement.createChild({
style: {
position: 'absolute',
top: '-10000px'
}
}, null, true));

result.className = cls;
return result;
},

解决方法:

下载 ExtJS 框架 4.1.0 版本,而不是使用 4.1.1 版本。

http://cdn.sencha.io/ext-4.1.0-gpl.zip

如果有人能准确解释这里出了什么问题,我会将他们的答案标记为正确。这是我正在使用的代理。

Ext.define('Ext.ux.AspWebAjaxProxy', {
extend: 'Ext.data.proxy.Ajax',
require: 'Ext.data',

buildRequest: function (operation) {
var params = Ext.applyIf(operation.params || {}, this.extraParams || {}),
request;
params = Ext.applyIf(params, this.getParams(params, operation));
if (operation.id && !params.id) {
params.id = operation.id;
}

params = Ext.JSON.encode(params);

request = Ext.create('Ext.data.Request', {
params: params,
action: operation.action,
records: operation.records,
operation: operation,
url: operation.url
});
request.url = this.buildUrl(request);
operation.request = request;
return request;
}
});

最佳答案

另一个对我有用的解决方法是在使用 ext 对象之前定义此元素:

Ext.resetElement = Ext.getBody();

关于asp.net - 分机JS 4 : JavaScript Exception "TypeError: Ext.resetElement is undefined" in Ext JS version 4. 1.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12310650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com