我有一个jsfiddle:http://jsfiddle.net/netroworx/3ea5a/
Html是:
<div ng-app>
<div ng-controller="AjaxCtrl">
{{result}}
</div>
</div>
Javascript是:
function AjaxCtrl($scope, $http) {
$scope.result = "ABC";
$scope.data = { "title": "My note" };
$http.post('http://jsfiddle.apiary-mock.com/notes', $scope.data).success(function(data, status, headers, config) {
$scope.result = JSON.stringify(data);
}).error(function (data, status) {
$scope.result = "Error";
});
}
调用Apiary.io mock
在Chrome v34下的Mac上,通话似乎需要几分钟才能恢复。
使用Safari或Firefox,电话会在一秒左右回来。
开发人员工具中的Chrome网络标签显示几分钟的待处理请求。
请帮忙。
答案 0 :(得分:0)
看起来我发现了这个问题。 Sophos杀毒软件阻止了流量,看它是否是恶意的。
我已禁用网络扫描,并立即回复。