我已经搜索了很多,但仍然没有找到任何解决方案。我想在提交帖子评论后调用ajax动作。我怎么能用WordPress做到这一点?
答案 0 :(得分:0)
没有代码,我自己也无法用代码给你以下步骤:
跟踪触发评论提交的事件以及发生的DOM元素。
在事件处理程序中,使用jQuery.ajax
向服务器发送XMLHTTPRequest。
确保以Wordpress方式创建ajax调用,方法是向wp-admin/admin-ajax.php
发送请求并将逻辑放在functions.php
下。添加die()
功能。
答案 1 :(得分:0)
我会使用WordPress过滤器过滤评论。您可能根本不需要AJAX请求。但我不确定你为什么需要AJAX。 query language
function preprocess_comment_handler( $commentdata ) {
//some code
return $commentdata;
}
add_filter( 'preprocess_comment' , 'preprocess_comment_handler' );
如果您确实需要AJAX,请按照以下说明如何在WordPress中运行它。您需要使用To learn more about this filter.将您的AJAX发送到admin-ajax.php。
//add wp_localize_script to your functions.php
//make sure to enqueue the js file you are writing to and it's dependencies
function acarter_enqueue_scripts() {
wp_enqueue_script( 'jquery' );
wp_enqueue_script('your-script', get_template_directory_uri() . '/js/theme.js');
wp_localize_script('your-script', 'your_script_vars', array(
'ajaxurl' => admin_url( 'admin-ajax.php' )
)
);
}
add_action( 'wp_enqueue_scripts', 'acarter_enqueue_scripts' );
//do your AJAX call in the file you just enqueued
jQuery( document ).ready( function($) {
//Ajax Form Processing
var $form = $( '#button' )
$form.submit( function (e) {
e.preventDefault();
$.ajax({
type: '',
url: your_script_vars.ajaxurl,
data: {
action: 'function_name_of_the_callback',
//key : values of stuff you want in the php callback
},
dataType: 'json',
success: function (response) {
if ( true === response.success ) {
console.log( 'success!!' );
});
} else if ( false === response.success && response.data ) {
window.alert( 'doing it wrong' );
}
}
});
});
});
您可以将数据发送到上述过滤器,因此使用过滤器作为回调,但是,我从未尝试过这样做。至少你会知道如何在WordPress中设置AJAX。