dongxia1390 2016-07-27 06:28
浏览 97
已采纳

Wordpress ajax数据库调用

I am struggling with getting ajax to work, if someone can guide me, it'd be greatly appreciated.

I am building this as a plugin.

I have a file named courselinkscript.js and contains this

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

jQuery(".courselist").change(function () {

    jQuery.ajax({
            type:"POST",
            url: my_ajax_object.ajax_url,
            data: { 'action': 'getLinkedCourses' }
            //where/what do I put here to work with the data I received. 
    })


    });
});

Then in my main php file named course-listing.php I have this

function getLinkedCourses() {
    global $wpdb;
    $results = $wpdb->get_results( 'SELECT list.ID, list.course, list.cost, list.length, link.CourseID FROM `wp_course_list` AS list INNER JOIN `wp_course_link` as link ON (list.ID=link.LinkID) WHERE link.CourseID = 1', OBJECT );
    echo json_encode($results);

wp_die();

}


function wpb_adding_scripts() {
wp_register_script('courselinkscript', plugins_url('courselinkscript.js', __FILE__), array('jquery'),'1.0', true);
wp_enqueue_script('courselinkscript');
wp_localize_script( 'courselinkscript', 'my_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
}

add_action( 'wp_ajax_my_list', 'getLinkedCourses' );

add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' );  

My calls to ajax don't work as I don't understand what needs to be done to initalise it. Any help is appreciated.

  • 写回答

1条回答

  • dongyinshua9996 2016-07-27 06:45
    关注

    Use the below mentioned code. It should work.

    function getLinkedCourses() {
       global $wpdb;
       $results = $wpdb->get_results( 'SELECT list.ID, list.course, list.cost, list.length, link.CourseID FROM `wp_course_list` AS list INNER JOIN `wp_course_link` as link ON (list.ID=link.LinkID) WHERE link.CourseID = 1', OBJECT );
       echo json_encode($results);
    
      wp_die();
    
    }
    
    
    function wpb_adding_scripts() {
       wp_register_script('courselinkscript', plugins_url('courselinkscript.js', __FILE__), array('jquery'),'1.0', true);
       wp_enqueue_script('courselinkscript');
       wp_localize_script( 'courselinkscript', 'my_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
    }
    
    add_action( 'wp_ajax_getLinkedCourses', 'getLinkedCourses' );
    add_action( 'wp_ajax_nopriv_getLinkedCourses', 'getLinkedCourses' );
    // add_action( 'wp_ajax_my_list', 'getLinkedCourses' );
    
    add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' );
    

    Replace your javascript with the below code:

     jQuery(document).ready(function($){
    
       jQuery(".courselist").change(function () {
    
          jQuery.ajax({
             type:"POST",
             url: my_ajax_object.ajax_url,
             data: { 'action': 'getLinkedCourses' },
             //where/what do I put here to work with the data I received.
             success: function(data) {
                 var obj = jQuery.parseJSON(data);
                 console.log(obj);
             },
          });
    
       });
    }); 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误