0

我有一个 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 模拟

在 Chrome v34 下的 Mac 上,通话似乎需要几分钟才能回来。

使用 Safari 或 Firefox,呼叫会在一秒钟左右内返回。

开发者工具中的 Chrome 网络选项卡在这几分钟内将请求显示为待处理。

请帮忙。

4

1 回答 1

0

看来我发现了问题。Sophos 防病毒软件正在阻止流量以查看它是否是恶意的。

我已禁用网络扫描,并且回复会立即返回。

于 2014-04-18T22:02:10.830 回答