函数描述
发送 JSON 响应给一个Ajax请求,标记请求失败了。此响应总是有一个 success 键,值为 false,如果传递了其他数据到此函数中,传入的数据将被编码为 data 键的值。
Usage
wp_send_json_error( $data );
// 编码前数据看起来应该是这个样子的
$response = array( 'success' => false ); //如果 $data 为空
$response = array( 'success' => false, 'data' => $data ); //如果设置了 $data
function parameter
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$data | multi- | be | 需要格式化为JSON 的数据 | not have |
usage example
jQuery(document).ready(function(){
jQuery('#btn_save').click(function(e){
e.preventDefault();
jQuery.post(pluginUrl+'ajax/save_field.php',jQuery('#my-form').serialize(), function(data) {
c-alert(data.success);
});
});
});
save_field.php
$nonce=$_POST['_wpnonce_name'];
if (empty($_POST) || !wp_verify_nonce($nonce, 'my-nonce') ){
wp_send_json_error(); // sends json_encoded success=false
}
related function
wp_send_json: 返回 json 格式的数据给客户端
wp_send_json_success: 返回带成功标记的 json 数据给客户端