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);
             },
          });
    
       });
    }); 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 X轴为分离变量(因子变量),如何控制X轴每个分类变量的长度。
  • ¥30 求给定范围的全体素数p的(p-2)的连乘积
  • ¥15 VFP如何使用阿里TTS实现文字转语音?
  • ¥100 需要跳转番茄畅听app的adb命令
  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计