Wordpress update_user_meta onclick 与 Ajax
Wordpress update_user_meta onclick with Ajax
我正在尝试通过 Ajax 在 Wordpress 中调用 update_user_meta。
我一直收到 'success!' 控制台日志,但没有返回任何数据,用户元字段也没有更新。
general.js 点击按钮:
var newViewPreference = jQuery(this).attr('id');
jQuery.ajax({
url: '/wp-admin/admin-ajax.php',
data: {
'action':'update_view_pref',
'viewPref' : newViewPreference
},
success:function(data) {
console.log(data);
console.log("success!");
},
error: function(errorThrown){
console.log(errorThrown);
console.log("fail");
}
});
functions.php
add_action( 'wp_ajax_update_view_pref', 'update_view_pref');
function update_view_pref() {
if(empty($_POST) || !isset($_POST)) {
ajaxStatus('error', 'Nothing to update.');
} else {
try {
$user = wp_get_current_user();
$viewPref = $_POST['viewPref'];
if ($viewPref == 'toggle-grid') {
update_user_meta( $user->ID, 'wpcf-shop-view-preference', 'grid' );
} elseif ($viewPref == 'toggle-list') {
update_user_meta( $user->ID, 'wpcf-shop-view-preference', 'list' );
}
die();
} catch (Exception $e){
echo 'Caught exception: ', $e->getMessage(), "\n";
}
}
}
谁能指出我哪里出错了?谢谢
将 $_POST 更改为 $_REQUEST 有效。
谁能解释为什么 $_POST 不起作用而 $_REQUEST 起作用?
我是通过单击按钮(不是表单)向 ajax 请求提交数据。
我正在尝试通过 Ajax 在 Wordpress 中调用 update_user_meta。 我一直收到 'success!' 控制台日志,但没有返回任何数据,用户元字段也没有更新。
general.js 点击按钮:
var newViewPreference = jQuery(this).attr('id');
jQuery.ajax({
url: '/wp-admin/admin-ajax.php',
data: {
'action':'update_view_pref',
'viewPref' : newViewPreference
},
success:function(data) {
console.log(data);
console.log("success!");
},
error: function(errorThrown){
console.log(errorThrown);
console.log("fail");
}
});
functions.php
add_action( 'wp_ajax_update_view_pref', 'update_view_pref');
function update_view_pref() {
if(empty($_POST) || !isset($_POST)) {
ajaxStatus('error', 'Nothing to update.');
} else {
try {
$user = wp_get_current_user();
$viewPref = $_POST['viewPref'];
if ($viewPref == 'toggle-grid') {
update_user_meta( $user->ID, 'wpcf-shop-view-preference', 'grid' );
} elseif ($viewPref == 'toggle-list') {
update_user_meta( $user->ID, 'wpcf-shop-view-preference', 'list' );
}
die();
} catch (Exception $e){
echo 'Caught exception: ', $e->getMessage(), "\n";
}
}
}
谁能指出我哪里出错了?谢谢
将 $_POST 更改为 $_REQUEST 有效。
谁能解释为什么 $_POST 不起作用而 $_REQUEST 起作用?
我是通过单击按钮(不是表单)向 ajax 请求提交数据。