Angularjs - 调用json Web服务始终返回404

时间:2014-06-24 07:42:06

标签: javascript json angularjs ionic-framework

我是angularjs的新手。我正在使用它与离子框架。我正在尝试调用json Web服务,但它总是返回404.

当我在浏览器中尝试时,它的效果非常好。

这是我的代码:

function FetchCtrl($scope, $http) {

    $scope.fetch = function() {

        $http({method: 'GET', url: 'http://example.com/anyservice'}).
          success(function(data, status, headers, config) {

            alert("data "+data);
          }).
          error(function(data, status, headers, config) {

            alert("error "+status);

          });

      };
 }

1 个答案:

答案 0 :(得分:1)

使用Chrome或FireFox开发者工具并打开网络标签,然后试一试,看看实际发生的请求是什么,这可以帮助您找到问题。