gpt4 book ai didi

php - AJAX JSON 加载 jQuery 数据表

转载 作者:行者123 更新时间:2023-12-01 07:48:22 25 4
gpt4 key购买 nike

我在名为 qnams.php 的文件中有这个返回 JSON 的 php 脚本:

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

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

$select = "SELECT column1,column2,column3,column4
FROM qnamtable WHERE USER = '$username'";

$query = mysqli_query($dbc, $select) or die(mysqli_error());

$out = array();

while ($row = $query->fetch_array()) {
$out[] = $row;
}
echo json_encode($out);

mysqli_free_result($query);

我发现了有关如何将 JSON 直接添加到数据表中的不同帖子,但对如何继续感到有点困惑。

在我的主页上,我在页面底部有这个功能:

$(function() {
$('#example1').dataTable({
"bPaginate": false,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"bInfo": true,
"sScrollY": "auto",
"sScrollCollapse": true,
"bAutoWidth": true
});
});

我需要向此函数添加什么才能包含包含所有 header 和数据的 JSON?

最佳答案

您需要使用Jquery Datatables的ajax选项

ajax:{ url: '/path/to/php/file/with/jsondata'}

关于php - AJAX JSON 加载 jQuery 数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33175158/

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