gpt4 book ai didi

php - 如何使用 ssp.class.php DataTables 使用 'WHERE' 子句

转载 作者:IT老高 更新时间:2023-10-29 00:05:18 30 4
gpt4 key购买 nike

好的,我正在尝试使用 jQuery DataTable (DataTables.net) 显示来 self 的数据库的信息。我可以让它正常显示整个表格的“注释”,但我只想显示尚未阅读的注释。所以我需要以某种方式包含一个 WHERE 子句,但我不清楚最好的方法。

这是我当前显示整个表格的方式:

// 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' => 0,
'formatter' => function( $d, $row ) {
return '<a href="profile.php?search='.$d.'" target="_Blank">'.$d."</a>";
}
),

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'

最佳答案

您应该更改 DataTables 默认函数来执行此操作!

使用这个ssp.class.php自定义类

Link

像下面的例子一样使用它:

require( 'ssp.class.php' );
$where = "Status ='Unread'";
echo json_encode(
SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns,$where )
);

如果设置$where参数,自定义类会在select语句中添加where子句!

更新:

DataTables 2015年新增复杂方法

新的内置方法可以在查询中设置where子句!

关于php - 如何使用 ssp.class.php DataTables 使用 'WHERE' 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25677689/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com