8

在 Chrome 更新之前,我的代码运行良好。

我对我的服务器进行了 ajax 调用。我的服务器收到呼叫,向客户端返回 JSON,但答案始终为空。当我查看 Fiddler 时,我会从服务器得到答案。

在此处输入图像描述

我尝试使用 JQuery,也尝试使用 xmlhttp 调用。总是一样的结果

新的 CORS 政策规则是否适用...?

有我的 xmlHTTP 调用

 var xmlhttp = new XMLHttpRequest();   // new HttpRequest instance 
      var theUrl = "URL";
      xmlhttp.open("POST", theUrl);
      xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
      xmlhttp.send('{ "args" :{ "Obj":"my obj"}}');
      xmlhttp.onreadystatechange = function(state,xhh,aaa){
        if (xmlhttp.readyState == XMLHttpRequest.DONE) {
          alert(xmlhttp.responseText);
        }
      }

ajax调用类似

$.ajax({
        url: "URL",
        data: '{ "args" :{ "Obj":"my obj"}}',
        dataType: "json",
        contentType: "application/json; charset=utf-8",
        type: "POST",
        async: false,       
        error: function (xhr, ajaxOptions, thrownError) {
          if (that.Fail != null) {
            that.Fail();
          }
        },
        success : function(data){

           alert(data);

        }
      })
4

1 回答 1

8

升级到 Chrome 73 后我遇到了同样的问题。感谢@wOxxOm

这是到目前为止的解决方法:

  1. 转到 chrome://flags
  2. 禁用启用网络服务

一步步


更新:

根据此公告,这不是错误:https ://www.chromium.org/Home/chromium-security/extension-content-script-fetches

您需要将 Cross-Origin Fetches 放到后台脚本而不是内容脚本中。

于 2019-03-14T06:32:37.160 回答