自定义MySQL查询jquery dataTables [英] Custom MySQL query for jquery dataTables

查看:287
本文介绍了自定义MySQL查询jquery dataTables的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这里的问题是dataTables分页不起作用 这是我创建的脚本,该脚本从数据库输出json

the problem here is the dataTables pagination is not working this is the script i created that outputs json from the database

include( "../database.php" );

$q = $dbh->prepare("SELECT r.studid, r.firstname, r.middlename, r.lastname, r.Enrolling, c.courseid,c.code, s.status,s.dateapproved,s.approvedby FROM pcc_registration r, pcc_courses c, pcc_studentsubj s  WHERE c.courseid= r.Enrolling AND s.studentid=r.studid AND  r.status=? AND s.status=? GROUP BY r.studid");
$q->execute(array(1,2));
$rows = array();
$i = 1;
while ($r = $q->fetch(PDO::FETCH_NUM, PDO::FETCH_ORI_NEXT, PDO::FETCH_COLUMN)){
    $rows[] = array(
        "DT_RowId" => "row_".$i,
        "reg" => array(
                "studid" => $r[0],
                "firstname" => $r[1],
                "middlename" => $r[2],
                "lastname" => $r[3],
                "course" => $r[6],
                "dateapproved" => $r[8],
                "approvedby" => $r[9]
            ),
    );
    $i++;
}
$rt = (STRING) $q->rowCount();
$data = array(
        "draw" => 2,
        "recordsTotal" => $rt,
        "recordsFiltered" => $rt,
        "data" => $rows
    );
echo json_encode($data);

这是将json编码的数据输出到页面的javascript

and this is the javascript that outputs the json encoded data to the page

(function($) {
    $(document).ready(function() {  
    $('#dataTables-example').DataTable( {
        processing: true,
        serverSide: true,
        ajax: {
            url: "includes/php/approvedSched.php",
            type: "POST"
        },
        "deferRender": true,
        columns: [
            {data: "reg.studid"},
            {data: "reg.lastname"},
            {data: "reg.firstname"},
            {data: "reg.middlename"},
            {data: "reg.course"},
            {data: "reg.dateapproved"},
            {data: "reg.approvedby"},
            {data: "reg.studid"},
        ],
        tableTools: {
            sRowSelect: "os",
            aButtons: [
                // {sExtends: "editor_edit", editor: editor},
                // {sExtends: "editor_remove", editor: editor}
            ]
        }
    } );

    });

}(jQuery));

对这个问题的任何答案或解决方案都值得赞赏=)

any answer or solution to this problem is appreciated =)

推荐答案

http://datatables.net/手册/服务器端

http://coderexample.com/datatable-demo -server-side-in-phpmysql-and-ajax/

此链接为使用mySQL的自定义服务器端提供了更好的帮助

this links is a better help for custom server side with mySQL

这篇关于自定义MySQL查询jquery dataTables的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆