我正在尝试通过 Ext.Ajax.request 访问任何 Web 资源,但它总是失败,例如我的本地主机上有 GlassFish Server,端口为 4848,当我尝试访问它时,请求失败,我尝试了其他 url但没有成功。这是我的代码:
`items:[
{
id : 'button1',
xtype : 'button',
text : 'click',
listeners: {
click : function(btn){
Ext.Ajax.request({
method : 'GET',
url : 'http://localhost:4848',
success : function(){
alert('success');
},
failure : function(){
alert('fail');
}
});
}
}
]`