我有一个 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 网络选项卡在这几分钟内将请求显示为待处理。
请帮忙。