免责声明:不确定这是否与 WordPress 相关。
我正在按照一个简单的教程来检查 AJAX 是否在我的 WordPress 本地主机中工作。
我的 ajax-test.js :
jQuery(document).ready( function($){
$(".ajax-link").click( function(){
var data = {
action: 'test_response',
post_var: 'this will be echoed back'
};
$.post(the_ajax_script.ajaxurl, data, function(response) {
alert(response);
});
return false;
});
});
在我的插件中,我将脚本添加到 wp_print_scripts() 并添加处理函数:
function test_ajax_load_scripts(){
wp_enqueue_script("ajax-test", plugin_dir_url( __FILE__ ) . 'ajax-test.js', array( 'jquery' ) );
wp_localize_script('ajax-test', 'the_ajax_script', array( 'ajaxurl' => admin_url('admin-ajax.php') ) );
}
add_action('wp_print_scripts', 'test_ajax_load_scripts');
function text_ajax_process_request(){
if(isset($_POST["post_var"])){
$response = $_POST["post_var"];
echo $response;
die();
}
}
add_action('wp_ajax_test_response', 'test_ajax_process_request');
我得到带有 href="#" 的链接输出,然后单击它,它会将我带到页面顶部。我检查了 Firebug,我可以确认 ajax-test.js 已加载到标题中。控制台中没有任何内容。
我还能如何调试为什么警报没有发生?