代码如下,我希望获得服务器返回数据,但控制台提示为:跨源读取阻止(CORB)功能阻止了 MIME 类型为 application/json 的跨源响应。
尝试某度的多种方法,未能解决。
麻烦各位大佬指教。
[HTML] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<title>Document</title>
</head>
<body>
<button>查询</button>
<script>
$('button').click(function () {
$.ajax({
type: "GET",
url: "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxcc1fe14e3f&secret=9d8767fe1ecea0",
dataType: "jsonp",
success: function (data) {
console.log(JSON.stringify())
}
});
});
</script>
</body>
</html> |