簡體   English   中英

AJAX處理程序拋出400(錯誤請求)-為什么?

[英]AJAX handler throws 400 (Bad request) - why?

我正在嘗試將“加載更多帖子”功能應用於帖子循環,但是當涉及到admin-ajax.php時,我正在處理一個400 Bad請求。

我使用的參考是這樣的- https://rudrastyh.com/wordpress/load-more-posts-ajax.html

以下函數(在functions.php中)將查詢參數傳遞給javascript:

function wordpress_my_load_more_scripts() 
{
    global $wp_query; 

    wp_enqueue_script('jquery');

    wp_register_script( 'my_loadmore', get_stylesheet_directory_uri() . '/myloadmore.js', array('jquery') );

    wp_localize_script( 'my_loadmore', 'wordpress_loadmore_params', array(
        'ajaxurl' => admin_url() . 'admin-ajax.php', 
        'posts' => json_encode( $wp_query->query_vars ), 
        'current_page' => get_query_var( 'paged' ) ? get_query_var('paged') : 1,
        'max_page' => $wp_query->max_num_pages
    ) );

    wp_enqueue_script( 'my_loadmore' );
}

add_action( 'wp_enqueue_scripts', 'wordpress_my_load_more_scripts' );

參數傳遞給下一個名為“myloadmore.js” jQuery腳本:

jQuery(function($){
    $('.wordpress_loadmore').click(function()
    { 
        var button = $(this),
            data = {
            'action': 'loadmore',
            'query': wordpress_loadmore_params.posts, 
            'page' : wordpress_loadmore_params.current_page
        };

        console.log(wordpress_loadmore_params.ajaxurl);

        $.ajax({
            url : wordpress_loadmore_params.ajaxurl, // AJAX handler
            data : data,
            type : 'POST',
            beforeSend : function ( xhr ) 
            {
                button.text('Loading...'); 
            },
            success : function( data ){
                if( data ) { 
                    button.text( 'More posts' ).prev().before(data); 
                    wordpress_loadmore_params.current_page++;

                    if ( wordpress_loadmore_params.current_page == wordpress_loadmore_params.max_page ) 
                        button.remove(); // if last page, remove the button

                } else {
                    button.remove(); // if no data, remove the button as well
                }
            }
        });
    });
});

在functions.php中的以下function有望在while循環內提供三篇文章:

function wordpress_loadmore_ajax_handler()
    {
        $args = json_decode( stripslashes( $_POST['query'] ), true );
        $args['paged'] = $_POST['page'] + 1; 
        $args['post_status'] = 'publish';

        query_posts( $args );

        if(have_posts() ) :

            echo "We have post(s)!";

            while( have_posts() ): the_post();

                echo "A post!";

            endwhile;

        endif;

        die; 
    } 

    add_action('wp_ajax_loadmore', 'wordpress_loadmore_ajax_handler'); 
    add_action('wp_ajax_nopriv_loadmore', 'wordpress_loadmore_ajax_handler');

發布循環是這樣的:

<ul class="products columns-3">

                    <?php 

                    $query_params = array(
                            'post_type' => 'post',
                            'posts_per_page' => 3
                    );

                    $wp_query = new WP_Query( $query_params);        

                    if( $wp_query->have_posts() ) :

                        while ($wp_query->have_posts()) : $wp_query->the_post(); ?>

                            <li class="product post-item">
                                <span class="post-image">
                                    <a href="<?php the_permalink(); ?>">
                                        <?php 
                                            if ( has_post_thumbnail()) 
                                            {
                                                the_post_thumbnail();
                                            }
                                        ?>
                                    </a>
                                </span>
                                <h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
                                <span class="post-category"><?php the_category(', ');?></span>
                            </li>

                        <?php endwhile; ?>

                    <?php endif; ?>

                </ul>

                <nav>
                    <?php

                    global $wp_query; // you can remove this line if everything works for you

                    // don't display the button if there are not enough posts
                    if (  $wp_query->max_num_pages > 1 )
                        echo '
                            <div class="wordpress_wrapper">
                                <div class="wordpress_loadmore">More posts</div>
                            </div>'; // you can use <a> as well
                    ?>
                </nav>

                <?php wp_reset_postdata(); ?>

按一下按鈕,加載以下消息多個帖子的結果:

https://www.uvjagtpro.dk/wp-admin/admin-ajax.php
jquery.js?ver=1.12.4:4 POST https://www.uvjagtpro.dk/wp-admin/admin-ajax.php 400 ()
send @ jquery.js?ver=1.12.4:4
ajax @ jquery.js?ver=1.12.4:4
(anonymous) @ myloadmore.js:13
dispatch @ jquery.js?ver=1.12.4:3
r.handle @ jquery.js?ver=1.12.4:3

為什么我不能解析名為“ wordpress_loadmore_params.ajaxurl”的數組中的變量,而不會引起400錯誤的請求?

鏈接到頁面在這里-https://www.uvjagtpro.dk/arkiv/

僅有3種情況,WordPress會在AJAX請求中返回400到

... / wp-admin / admin-ajax.php

  1. $_REQUEST['action']變量為空
  2. has_action( 'wp_ajax_' . $_REQUEST['action'] )為假
  3. has_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] )為假

因此,您應該驗證您的代碼

add_action('wp_ajax_loadmore', 'wordpress_loadmore_ajax_handler'); 
add_action('wp_ajax_nopriv_loadmore', 'wordpress_loadmore_ajax_handler');

確實執行了,查詢中確實包含帶有內容“ loadmore”的$_REQUEST['action'] 如果您知道如何使用PHP調試器,則這最容易做到,否則我將在add_actio n語句之后使用error_log()顯示相關消息。 您還可以顯示has_action()函數的值。

您的代碼對我來說看起來是正確的,因此我認為錯誤不是代碼本身,而是它的位置。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM