0

我使用 Angular 版本:

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>

这是我的控制器:

function HelloController($scope,$http) {
    $scope.greeting = {
        text : 'Hello'
    };

    $scope.clickMe = function() {
        $http.get('127.0.0.1:10880', {params: {tsn:'10'}})
             .success(function(data,status,header,config) {
                 $scope.greeting.text ='This is cool';
             }).error(function(data,status,header,config) {
                 $scope.greeting.text ='We have error';
             });    

        $scope.greeting.text ='None';
    };
}

我在端口 10880 上没有运行任何东西。如果我在 $http.get 函数中使用 127.0.0.1,则从未调用过错误。但是如果我使用 localhost insted of 127.0.0.1 错误函数会被调用。我根本不知道这个 Angular 问题。我使用 Linux。

感谢您的任何想法

兹拉亚

4

1 回答 1

0

如果你在它应该工作http://之前添加。127.0.0.1:xxxx

我没有更多的解释为什么。我试图从 $http 服务的来源中找到一些相关的东西。

于 2013-07-16T09:32:26.350 回答