ajax响应没有wp_ajax动作

时间:2018-02-14 05:21:57

标签: ajax wordpress

HTML:

<form enctype="multipart/form-data" action="" method="POST" style="margin-top: 20px; ">
        <div class="row btts-form-group clearfix">
    <div style="width: 20%; float: left; margin-right: 1%;">
        Image : <input type="file" name="image[]">
    </div>  
    <div style="width: 27%; float: left; margin-right: 1%;">
        Title : <input type="text" name="title[]">
    </div>

    <div style="width: 22%; float: left; margin-right: 1%;">
        More Info : <input type="text" name="more_info[]">
    </div>

    <div style="width: 22%; float: left; margin-right: 1%;">
        Button : <input placeholder="Put the url.." type="text" name="button_link[]">
    </div>
    <div style="width: 5%; float: left; ">
        <input type="button" class="button button-primary add_more" value="+">
    </div>
</div>


        <input type="submit" class="button button-primary" value="Save Change" style="margin-top: 20px;">
    </form>

这是我的简单jquery代码,用于附加一行表单:

 $(document).ready(function(){

        $('body').on('click', '.add_more', function(e){


            $.ajax({
                url : absbBtToS.ajax_url,
                type : 'get',
                data : {
                    action : 'new_slider_html',
                    security : absbBtToS.check_nonce

                },
                success : function( response ) {

                    $('.btts-form-group:last').after(response);
                    //console.log(response);
                    //jQuery('.rml_contents').html(response);
                },
                error : function(error){
                   console.log(error);
                }
            });

          e.stopImmediatePropagation();

        });
     });

Ajax行动:

add_action( 'wp_ajax_new_slider_html',  'new_slider_html');

function new_slider_html(){
    include( plugin_dir_path( __FILE__ ) . 'admin/partials/absb_bt_to_s-admin-display.php');

        if( !check_ajax_referer( 'absbBtToS-nonce', 'security' ) ){
            wp_send_json_error('error!');
        }

      show_slider_form_input();
}

show_slider_form_input();定义如下,其内容在absb_bt_to_s-admin-display.php中:

function show_slider_form_input(){?>
<div class="row btts-form-group clearfix" >
    <div style="width: 20%; float: left; margin-right: 1%;">
        Image : <input type="file" name="image[]"  />
    </div>  
    <div style="width: 27%; float: left; margin-right: 1%;">
        Title : <input type="text" name="title[]" />
    </div>

    <div style="width: 22%; float: left; margin-right: 1%;">
        More Info : <input type="text" name="more_info[]" />
    </div>

    <div style="width: 22%; float: left; margin-right: 1%;">
        Button : <input placeholder="Put the url.." type="text" name="button_link[]" />
    </div>
    <div style="width: 5%; float: left; ">
        <input type="button" class="button button-primary add_more"  value="+" />
    </div>
</div>

<?php }

一切都很酷,按预期工作。但如果我删除以下代码:

add_action( 'wp_ajax_new_slider_html',  'new_slider_html');

function new_slider_html(){
include( plugin_dir_path( __FILE__ ) . 'admin/partials/absb_bt_to_s-admin-display.php');

    if( !check_ajax_referer( 'absbBtToS-nonce', 'security' ) ){
        wp_send_json_error('error!');
    }

  show_slider_form_input();
} 

它像往常一样工作。据我所知,上面的代码只负责推送响应。我在我的整个插件中搜索没有重复的代码。我的问题是ajax响应是如何产生的?如果我问的是胡说八道,我很抱歉。我刚开始用wordpress学习Ajax。

1 个答案:

答案 0 :(得分:0)

我有同样的问题&#34;但当我搜索整个主题文件夹时,我发现我在其他函数文件中声明了add_action wp_ajax。