未捕获的类型错误:无法调用方法“请求”;未定义的
在我的 javascript 代码中,我不断收到以下错误:
Uncaught TypeError: Cannot call method 'request' of undefined
我的 Javascript 如下。任何帮助将不胜感激!
myJsonStore = {
store1: new Ext.data.JsonStore({
root: 'rootstore1',
fields: ['UserID', 'UserName']
})
};
//------My panel------
items: [{
xtype: 'combo',
id: 'UName',
fieldLabel: 'User',
emptyText: 'All',
store: myJsonStore.store1,
displayField: 'UserName',
valueField: 'UserID'
}]
//--------------------
Ext.Ajax.request({
url: "rPages/rLogMatchOdds.aspx",
params: {
m: 'init'
},
success: function(response) {
var data = Ext.decode(response.responseText);
myJsonStore.store1.loadData(data);
}
});
Ext.getCmp('UName').store.on('load', function(my, rec) {
Ext.getCmp('UName').setValue(rec[0].get('UserName'));
}, this);
In my javascript code, I keep getting the following error:
Uncaught TypeError: Cannot call method 'request' of undefined
My Javascript is below. Any assistance would be greatly appreciated!
myJsonStore = {
store1: new Ext.data.JsonStore({
root: 'rootstore1',
fields: ['UserID', 'UserName']
})
};
//------My panel------
items: [{
xtype: 'combo',
id: 'UName',
fieldLabel: 'User',
emptyText: 'All',
store: myJsonStore.store1,
displayField: 'UserName',
valueField: 'UserID'
}]
//--------------------
Ext.Ajax.request({
url: "rPages/rLogMatchOdds.aspx",
params: {
m: 'init'
},
success: function(response) {
var data = Ext.decode(response.responseText);
myJsonStore.store1.loadData(data);
}
});
Ext.getCmp('UName').store.on('load', function(my, rec) {
Ext.getCmp('UName').setValue(rec[0].get('UserName'));
}, this);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,当错误的形式为
无法调用未定义的方法'X'
时,这意味着您尝试调用X
的任何对象都不存在。在您的情况下,似乎
Ext.Ajax
未定义。解决此问题的最简单方法包括两个简单的步骤:Ext.Ajax
的 javascript 文件。如果您使用的是ext-all.js
文件,那么您不必担心这一点。确保在浏览器准备就绪之前不会执行任何代码。最好的方法是将所有代码包装在
中
Ext.onReady() 调用。我在下面提供了一个例子。
您可以在 ExtJS 示例页面 中查看更多示例。
Usually, when the error is of the form
Cannot call method 'X' of undefined
, it means that whatever object you are attempting to callX
from does not exist.In your case, it appears as though
Ext.Ajax
is undefined. The easiest way to resolve this involves two simple steps:Ext.Ajax
. If you're using theext-all.js
file, then you shouldn't have to worry about this.Make sure that none of your code executes until the browser is ready. The best way to do this is to wrap all of your code within a
call. I've provided an example below.Ext.onReady()
You can see more examples of this at the ExtJS Examples page.
也被这个问题困扰了。
解决方案是您在
Ext.onReady
之前调用Ext.require('Ext.Ajax')
,如下所示:Got bitten by this problem too.
The solution is for you to call
Ext.require('Ext.Ajax')
beforeExt.onReady
like so: