我使用 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。
感谢您的任何想法
兹拉亚