我的aspx页面上有一个以下脚本,我正在尝试执行一种post方法,将数据传递给url,如下所示:
<script>
$.ajax({
type:"POST",
url: "https://www.google.com/recaptcha/api/siteverify",
crossDomain: true,
data: {"secret" : "0000000", "response" : response, "remoteip":"localhost"},
contentType: "application/json; charset=utf-8",
success: function (data) {
console.log(data + "test");
}
});
</script>
当它到达上面提到的URL时,出现以下错误 从源“ https://www.google.com/recaptcha/api/siteverify”对“ http://localhost”处XMLHttpRequest的访问已被CORS策略阻止:对预检请求的响应未通过访问控制检查:无“ Access-Control-Allow-Origin”标头存在于请求的资源上。
我如何使它工作?