谷歌浏览器 - 不需要的Ajax请求

时间:2017-12-22 12:38:43

标签: javascript angularjs ajax google-chrome

从一个角度$ http ajax调用两个请求出现在谷歌Chrome正常状态的服务器上。 (并非总是如此,有时一切都还可以)。在隐身模式下,一切都很好。

我使用Chrome开发者工具进行调查,但仍然没有答案。请在下面找到附图和angularjs脚本。

(我上传了Chrome开发工具屏幕。请有人告诉我这种现象是什么。)

角色部分:

 $http({
   method: "POST",
   url: "handler",
   cache: false,
   headers: {
    'Content-Type' : 'application/x-www-form-urlencoded'
   },
   data: _data,
 }).then(function Success(response) {
 ...

Normal state image
Abnormal state main image
Details for the first request image
Details for the second request image

如何跳过不需要的电话?

0 个答案:

没有答案