Ext.Ajax.request在Ext.onReady中不起作用?

时间:2012-01-26 02:05:28

标签: ajax extjs extjs4

我试图在ExtJS 4.02a中使用Ext.Ajax.request,但它不会在Ext.onReady中运行,当我把它带到Ext.onReady之外它运行正常。是否有一些我缺少的配置?

我的电话设置如下:

Ext.Ajax.request({
    url: '../json?queryName=tapAccounts&parameters=',
    success: function(response) {
        accounts = Ext.decode(response.responseText)
    }
});

1 个答案:

答案 0 :(得分:1)

我知道你怎么把你的ajax放在onready ???

里面
Ext.onReady(function(){
     //put ajax here
});

看一下我的样本here