我正在尝试通过AJAX访问JSON脚本,它在Safari和其他浏览器上运行良好,但不幸的是不能在Chrome中执行。它会出现以下错误:
拒绝执行来自'*‘的脚本,因为其MIME类型('application/json')不可执行,并且启用了严格的MIME类型检查。
下面是请求:
$.ajax({ url: "http://some_url/test.json?callback=?", type: "GET", dataType: 'json', cache: true, success: function (data, status, error) { console.log('success', data); error: function (data, status, error) { console.log('error', data, status, error);