jsonp函数不起作用
我在客户端网站上收到以下错误。 我正在使用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");
请有人帮我解决这个问题! 相关链接
链接地址: http://www.djcxy.com/p/47605.html