|
好吧,所以我试着用它,所以我试着用它jQuery
8 m4 f0 f$ ?0 O! C( H1 j- X2 b/ xDataTable(DataTables.net)从我的数据库中显示信息。我可以很好地显示整个表的注释,但我只想显示未读的注释。因此,我需要以某种方式包括它WHERE但我不知道实现这一目标的最好方法。% \3 X/ a& L; C8 _) j; B' U; F
这是我目前展示整个表格的方式:
" K H" A* [/ a" g. y5 {// DB table to use$table = 'Notes';// Table's primary key$primaryKey = 'CID';// Array of database columns which should be read and sent back to DataTables.// The `db` parameter represents the column name in the database,while the `dt`// parameter represents the DataTables column identifier. In this case simple// indexes$columns = array(array( 'db' => 'CID','dt' => 0 ),array( db => 'CID', 'dt => formatter' => function( $d,$row ()()()()()return '[url=profile.php?search='.$d.']'.$d."[/url]"; array( 'db' => 'Title','dt' => 1 ),array( 'db' => 'Name', 'dt' => 2 ),array( 'db => 'Date dt => 3、 formatter' => function( $d,$row ()()()()()return date( 'jS M y',strtotime($d)); )SQL server connection information$sql_details = array('user' => '*DB_USER*','pass' => '*Password*','db' => '*DatabaseName*','host' => 'localhost');require( 'ssp.class.php' );echo json_encode( SSP::simple( $_GET,$sql_details,$table,$primaryKey,$columns ));我需要相当于 SELECT * FROM Notes WHERE Status ='Unread'
8 L6 {$ C) ]8 n7 @0 Z/ @
$ l# U. l' x! P4 j! c5 c9 e/ l h8 X 解决方案:
# a) u( |7 u; X9 u 您应该更改 DataTables的 默认功能做到这一点!
+ T0 ^& H' b7 \' d使用此 ssp.class.php 定制类
1 |7 I. c. J, C9 b5 L( z6 T关联
! ?8 k u+ M% C就像下面的例子一样:
! ^ e6 \/ P( d( O: ~) y+ }5 grequire( 'ssp.class.php' );$where = "Status ='Unread'";echo json_encode( SSP::simple( $_GET,$sql_details,$table,$primaryKey,$columns,$where ));如果设置$ where参数,则Custom类将在where子句中添加select语句!
* V( ^: Q; a# ~1 q更新 :( B' J, G4 B$ G* J# R! V! Q. ^
2015年DataTables添加复杂的方法
8 L& [* U1 U+ n' x; l可以在查询中设置新的内置方法where子句! |
|