我正在使用WordPress插件,我需要使用AJAX对数据库进行查询。
我的功能如下:
function kokoku() {
if ($(".kokoku_head").height() === 0) {
$.ajax({
url: 'location_query.php',
success: function(data) {
$(".kokoku_head_bup").html(data);
}
});
}
};
现在在我的location_query.php中,如果我找一些静态的东西,比如:
Echo “hey!”;
Return
一切顺利。但是,在我添加WP_Query()
的那一刻,我收到了'Access-Control-Allow-Origin' header is present on the requested resource.
错误。
我尝试过添加
header('Access-Control-Allow-Origin: *');
到location_query.php文件,但问题仍然存在。
我最好的猜测是WP_Query()
正在调用另一个正在返回No 'Access-Control-Allow-Origin'
错误的文件,我是否应该添加header('Access-Control-Allow-Origin: *');
,但我不知道哪个文件可能是。