gpt4 book ai didi

jquery - 数据表警告(表 ID = 'ideas'): cannot reinitialise data table

转载 作者:行者123 更新时间:2023-12-03 22:38:27 25 4
gpt4 key购买 nike

我正在使用数据表并向 JS 代码添加选项,这些更改有效,但我不断收到弹出警告。我怎样才能停止警告?

$(document).ready(function() {
$('#ideas').dataTable( {
"aLengthMenu": [[5, 10, 15, -1], [5, 10, 50, "All"]]
});
});

enter image description here

最佳答案

如果您只是想摆脱警报框(例如“停止警告”),请将其添加为 $(document).ready 的第一行:

$.fn.dataTableExt.sErrMode = 'throw';

现在,数据表将在控制台中抛出一个显示为“ Uncaught Error :数据表警告...”的错误,而不是丑陋的警报框。

但是,您的代码/数据中存在错误,无论该错误现在是静默抛出的。

错误当 <table> 中的列数不匹配时,会引发“DataTables 警告(表 id = 'XXX'):从 X 行的数据源请求未知参数 'XXX'””以及数据中的列数。

<thead>
<th>col A</th>
<th>col B</th>
</thead>

插入

<tr>
<td>test test</td>
</tr>

<tr>
<td colspan="2">test test</td>
</tr>

会准确地重现该错误。因此,再次检查您的数据..

关于jquery - 数据表警告(表 ID = 'ideas'): cannot reinitialise data table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17140572/

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