我在客户端网站上收到以下错误。我正在使用jsonp和回调函数。这些是我设置的标题
拒绝执行来自“http://example.com/wp-content/plugins/plugin-name/includes/core-file.php”的脚本,因为其MIME类型('access-control-allow-methods:get')不可执行,并且启用了严格的MIME类型检查。
我已在我的插件核心文件下设置了这些标头。
//Typical headers
header('Content-Type: text/html');
header( "content-type: text/javascript; charset=utf-8" );
send_nosniff_header();
//Allow Cross-Origin Resource Sharing
header("Access-Control-Allow-Origin: *");
header("content-type: Access-Control-Allow-Methods: GET");
拜托,有人可以帮我解决这个问题! relevant link