0

你知道为什么这个简单的 wp ajax 查询不起作用吗?它总是返回失败。控制台-> https://pastebin.com/TABQCjXe

jQuery(document).ready(function($) {

// This does the ajax request
$.ajax({
    type: 'post',
    url: ajaxurl,
    data: {
        'action':'prefix_load_cat_posts'
    },
    success:function(data) {
        // This outputs the result of the ajax request
        console.log(data);
        $( ".prefix_load_cat_posts" ).append("success");
    },
    error: function(errorThrown){
        console.log(errorThrown);
        $( ".prefix_load_cat_posts" ).append("fail");
    }
});

});

PHP -> https://pastebin.com/g4QiWDky

4

3 回答 3

1

动作应该是load-filter代替prefix_load_cat_posts。看你的PHP代码,prefix_load_cat_posts其实就是回调函数名。

data: {
    'action':'load-filter'
},
于 2018-05-30T14:07:30.980 回答
1

还有另一种选择。我同意塞缪尔的观点,但我正在分享另一种选择

add_action( 'wp_ajax_nopriv_prefix_load_cat_posts', 'prefix_load_cat_posts' );
add_action( 'wp_ajax_prefix_load_cat_posts', 'prefix_load_cat_posts' );
于 2018-05-30T14:15:57.757 回答
0

你的动作是'load_filter',你也必须本地化ajaxurl使用这个函数wp_localize_script

$.ajax({
        type: 'post',
        url: ajaxurl,
        data: {
            'action':'load-filter'
        },
        success:function(data) {
            // This outputs the result of the ajax request
            console.log(data);
            $( ".prefix_load_cat_posts" ).append("success");
        },
        error: function(errorThrown){
            console.log(errorThrown);
            $( ".prefix_load_cat_posts" ).append("fail");
        }
    });
于 2018-05-30T14:15:57.717 回答