已经看了几个小时的 WP ajax 文档,但仍然无法弄清楚。我正在开发一个插件,这是为了更新它的选项而无需刷新页面。我已经设法通过 wp-load 完成它,但知道这是不好的做法,并希望正确地做到这一点。
我将把 javascript 移动到一个单独的 .js 文件中,一旦我完成了所有工作并开始工作。
所有代码都在一个页面上。尝试通过 ajax 更新一些选项,但它不起作用。响应说它成功,但 current_form 选项没有被更新。任何帮助将不胜感激。
代码现在更新为:
wp_enqueue_script( 'AWNT_save_form_data', plugin_dir_url( __FILE__ ) . 'includes/save_form_data.js', array( 'jquery' ) );
wp_localize_script( 'AWNT_save_form_data', 'MyAjax', array(
// URL to wp-admin/admin-ajax.php to process the request
'ajaxurl' => admin_url( 'admin-ajax.php' ),
// generate a nonce with a unique ID "myajax-post-comment-nonce"
// so that you can check it later when an AJAX request is sent
'postCommentNonce' => wp_create_nonce( 'myajax-post-comment-nonce' ),
)
);
add_action('wp_ajax_AWNT_save', 'AWNT_save_callback');
function AWNT_save_callback() {
update_option('current_form', '5');
$nonce = $_POST['postCommentNonce'];
if ( ! wp_verify_nonce( $nonce, 'myajax-post-comment-nonce' ) )
die ( 'Busted!');
update_option('current_form', 'foo');
echo get_option('current_form');
die();
}
JS 文件 (save_form_data.js):
jQuery(document).ready(function($) {
$('#save').click(function() {
var data = {
action: 'AWNT_save',
postCommentNonce : MyAjax.postCommentNonce,
form_name : $('#form_name').val(),
customC: $('#customC').is(":checked"),
no_throttle: $('#no_throttle').is(":checked"),
form_code : $('#form_code').val()};
jQuery.post( MyAjax.ajaxurl, data, function(response) {
alert('Response: ' + response);
});
});
});
正在添加脚本,看到响应为 0 的警报,但 update_option 要么没有被调用,要么不起作用。current_form 保持不变。