0

Ext.Ajax.Request 似乎不适用于我的桌面网络浏览器。它在设备和 xcode 模拟器上运行良好,但在桌面网络浏览器上,它调用失败方法。这是代码:

// send ajax request
        Ext.Ajax.request({
            url: 'http://testapp.cloudapp.net/index.php/api/accounts/login/',
            method: 'POST',
            params: {
                username: Ext.getCmp('username').getValue(),
                password: Ext.getCmp('password').getValue()
            },
            dataType: 'json',
            success : function(response, request) {
                if(response.responseText == true) {
                    Ext.Msg.alert('validated');

                    // animate to wall view
                    Ext.Viewport.animateActiveItem(targetView, { type : 'fade' } );

                    //destroy Login and Register Views
                    var vwRegister = Ext.ComponentQuery.query('register')[0],
                        vwLogin = Ext.ComponentQuery.query('login')[0];

                    setTimeout( function() {
                        vwRegister.destroy();
                        vwLogin.destroy();
                    }, 2000);
                }
                else {
                    Ext.Msg.alert('invalid user');       
                }
            },

            failure: function(response, request) {
                Ext.Msg.alert('error');
            }
        });

我不认为这与“同源策略”有关,因为我尝试使用 jQuery 的 $.ajax 函数做同样的事情并且效果很好。

4

2 回答 2

1

检查你的调试控制台,你很可能会看到关于同源策略的错误。

如果没有其他尝试,请尝试使用 --disable-web-security 选项打开 chrome 以查看它是否有帮助。

有关确切的语法,请参阅此问题

祝你好运,布拉德

于 2013-07-09T15:41:41.950 回答
1

虽然不是特别安全或不推荐,但您也可以在禁用网络安全功能(如同源策略)的状态下启动 Chrome 等浏览器。

对于 Windows...

chrome.exe --disable-web-security

对于麦克...

Chrome.app --args --disable-web-security

由于我不是每次都特别喜欢使用终端,因此您可以编写一个 bash 脚本来为您完成,或者在 Mac 上使用 automator。

另外,请确保浏览器尚未运行,否则这将不起作用。

于 2013-07-09T15:42:26.130 回答