angularjs在使用$ http.get时调用另一个url

时间:2014-11-16 14:51:30

标签: angularjs ionic-framework

我正在使用角度js,我尝试使用$ http.get来调用我的服务器端。

我的网址是“http://www.muslimsquare.com/sandbox/user_login.php”所以我把$ http.get和

放在一起
$http.get('http://www.muslimsquare.com/sandbox/user_login.php').then(function(resp) {
        alert(resp.status)
      }, function(err) {
        console.error('ERR', err);
});

当调用此代码时,我得到的错误就是这样。

enter image description here

看起来他们称之为另一个网址,而不是http://www.muslimsquare.com/sandbox/user_login.php(我用户谷歌浏览器)。我已经尝试将url更改为另一个域,它的工作。只是这个域名不起作用。

有谁知道如何解决这个问题?

问候。

0 个答案:

没有答案