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 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题