📜  admin-ajax.php 400(错误请求)- PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:46.184000             🧑  作者: Mango

代码示例1
(function( $ ) {
var ajaxscript = { ajax_url : 'yourdomain.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)