0

我正在尝试通过 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');
                                       }
                         });
             }
        }
]`
4

1 回答 1

-1

我认为您应该首先在 localhost 之后指定一个文件。

于 2015-07-01T19:19:23.023 回答