我有一个从前端从Angularjs调用的api,当来自post-man的API发送后几乎没有1秒发送响应,但是当它从chrome浏览器调用时,它会导致挂起它和Aw,Snap!页。
我们正在使用远程桌面,只有一个标签运行Chrome。
我们的任何想法都在向我们倾诉,因为api很好,邮差会在1秒内回复。
Angular服务方法的示例代码,它将响应发送到控制器,
this.getData() = function(chartJson) {
return $http({
method: "POST",
url: "api/xxxxxxxx/xxxxxxxx",
headers: { 'Content-Type': "Application/json" },
data: chartJson
});
};
在控制器中,我们访问上面的方法,如
this.getData()
.then(function(response){
console.log(response);
}, function(error){
console.log('Error '+error);
});
提前致谢。