如何检查数据表中是不是存在值
Posted
技术标签:
【中文标题】如何检查数据表中是不是存在值【英文标题】:How to check if value exist in datatable如何检查数据表中是否存在值 【发布时间】:2019-11-13 20:22:36 【问题描述】:有没有办法在现有数据表中找到特定值? 找到它后,我想将行的信息放在一个 var 中,例如选择它然后像这样获取数据
$('#datatable').DataTable().rows(selected:true).data();
现在我希望它像搜索一样工作,如果我输入 two
并且数据表在特定列上具有该值它会给我在 if else 中的 true,然后我希望它将该值存储在 javascript 中的 var 中。
我也知道如何获取数据表中的所有数据。我只是不知道如何使用 if else 获取单行的数据。感谢您的帮助!
编辑:
这就是我想要发生的事情
用户将输入数据 > 系统将检查该数据是否正确 存在于数据表中 > 如果不存在将发生错误 > 如果 现有,将整行存储在 var 例如:var data = //整行 数据
【问题讨论】:
如果你有count()函数,你可以用它来测试值是否为0(不存在)或大于0(如果存在)。 依靠数据表?如果它的所有数据,我知道计数是如何工作的。我不知道如何过滤单个数据。$('#datatable').DataTable().rows(selected:true).data();
返回一个数组不是吗?你能遍历数组并检查值是否存在于其中吗?
我知道它是如何工作的。数据未选中用户只会输入数据,我希望系统检查输入的数据是否存在于数据表中
然后在你的数据单元格上添加一个事件监听器onChange
。并检查那里的值。
【参考方案1】:
尝试使用search: 'applied'
选择器修饰符
var table = $('#example').DataTable()
console.log(table.search('Tokyo').row(search: 'applied').data())
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css" rel="stylesheet" />
<table id="example" class="display" style="width:100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Numero</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>155555</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>1</td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
</tbody>
</table>
【讨论】:
是否有只搜索特定列的功能?$(...).search is not a function
收到此错误。我试过这个alert($('#asset-table').search('Stocked').row(search: 'applied').data());
解决了!非常感谢!以上是关于如何检查数据表中是不是存在值的主要内容,如果未能解决你的问题,请参考以下文章