我使用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 127.0.0.1错误函数被调用。我根本没有这个角度问题。我使用Linux。
感谢您的任何想法
Zlaja
答案 0 :(得分:0)
如果您在http://
之前添加127.0.0.1:xxxx
,它应该有用。
我没有更多解释原因。我正试图找到与$ http服务源相关的东西。