WordPress admin-ajax.php 400错误请求

我有一个wordpress admin-ajax.php文件的奇怪而令人沮丧的行为, 当我发出ajax请求时, 它返回了400错误的错误请求。

(function( $ ) {
    var ajaxscript = { ajax_url : 'mydomain.com/wp-admin/admin-ajax.php' }
    $.ajax({
        url : ajaxscript.ajax_url, data : {
            action : 'cart_clb', id : 1
        }, method : 'POST', success : function( response ){ console.log(response) }, error : function(error){ console.log(error) }
    })
})(jQuery)

在我的functions.php中

add_action( 'wp_ajax_post_cart_clb', 'cart_clb' );
add_action( 'wp_ajax_nopriv_post_cart_clb', 'cart_clb' );

function cart_clb(){
    echo json_encode($_POST);
    die();
}

如上所述, 当我执行请求时:

mydomain.com/wp-admin/admin-ajax.php 400 (Bad Request)
{readyState: 4, getResponseHeader: ƒ, getAllResponseHeaders: ƒ, setRequestHeader: ƒ, overrideMimeType: ƒ,  …}

有人可以帮我取悦吗?谢谢。


#1


首先, 使用带有协议(或至少与协议无关的形式)的完整和绝对URL:

var ajaxscript = { ajax_url : '//mydomain.com/wp-admin/admin-ajax.php' } 

其次, 你的ajax操作名称不是php回调函数名称, 而是钩子wp_ajax_ {action_name} / wp_ajax_nopriv_ {action_name}的动态部分, 因此在你的情况下应为:

data : {
    action : 'post_cart_clb', id : 1
}, 

#2


我已经修改了你的代码, 然后看一下:

(function( $ ) {
var ajaxscript = { ajax_url : 'mydomain.com/wp-admin/admin-ajax.php' }
$.ajax({
    url : ajaxscript.ajax_url, data : {
        action : 'post_cart_clb', id : 1
    }, method : 'POST', //Post method
    success : function( response ){ console.log(response) }, error : function(error){ console.log(error) }
  })
})(jQuery)

这是WordPress ajax的语法:wp_ajax_ {Your_action_name} wp_ajax_nopriv_ {Your_action_name}


#3


在Vanilla JavaScript中, 如果不将此标头附加到POST请求中, 则会收到错误请求:

request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;');

因此, 请确保jQuery还要附加该标头。

来源:

https://www.srcmini02.com/64195.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_37496.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?