数据表中没有找到消息记录,怎么办?

发布于 2024-11-05 15:49:42 字数 143 浏览 0 评论 0原文

我正在使用带有服务器端选项的“datatable jquery 插件”来加载表记录。但我不知道当 mysql 查询没有返回数据时如何显示“无可用数据”之类的消息。因为我发现了返回的json格式数据应与表的列相同。 我正在使用 php。

任何帮助将不胜感激。

i am using 'datatable jquery plugin' with server-side option to load table records.but i don't know how i can display a message like 'no data available' when no data return from mysql query.as i found the count of returned data which are in json format should be the same as column the table has.
i am working with php.

any help would be appreciated .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘴硬脾气大 2024-11-12 15:49:42

您可以隐藏网格并显示消息。

标记:

<div id="noRecords" style="display:none"> There are no records </div>
<div id="dataTableContainer">
 ... (here goes your datatable)
</div>

Javascript:

if(count_of_returned_data == 0){
   $("#noRecords").show();
   $("#dataTableContainer").hide();
}else{
   $("#noRecords").hide();
   $("#dataTableContainer").show();
}

希望这有帮助。干杯

You could hide the grid and show the message.

Markup:

<div id="noRecords" style="display:none"> There are no records </div>
<div id="dataTableContainer">
 ... (here goes your datatable)
</div>

Javascript:

if(count_of_returned_data == 0){
   $("#noRecords").show();
   $("#dataTableContainer").hide();
}else{
   $("#noRecords").hide();
   $("#dataTableContainer").show();
}

Hope this helps. Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文