使用数据表,我可以从表中获取数据并提交到服务器吗?
我想要像 .serialize() 这样的东西用于整个表。我正在使用 DataTables 并希望能够获得一个漂亮的嵌套数组。
例如,我有下表:
<table>
<thead>
<tr>
<th>
user
</th>
<th>
first_name
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
joey
</td>
</tr>
<tr>
<td>
Joey
</td>
</tr>
</tbody>
</table>
我希望能够使用该表调用函数并获取一个数组,例如
[
{
'user': 'joey',
'firstname':'Joey'
}
]
是否有任何方法可以使用混合中的数据表插件来执行此操作。它对表做了一些奇怪的事情,所以我遇到的函数不适用于它。
I want something like .serialize() for the whole table. I am using DataTables and want to be able to get a nice nested array back.
For example, I have the following table:
<table>
<thead>
<tr>
<th>
user
</th>
<th>
first_name
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
joey
</td>
</tr>
<tr>
<td>
Joey
</td>
</tr>
</tbody>
</table>
I want to be able to call a function with that table and get an array like
[
{
'user': 'joey',
'firstname':'Joey'
}
]
Is there any way to do this with the Data Tables plugin in the mix. It does some strange stuff to the table, so the functions I've come across don't work on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道序列化方法,但如果你没有想法,你可以使用这个函数 在处理数据时创建您自己的数组。
所以你创建了一个全局数组,并且在你的数据表创建方法中你有
抱歉,我的javascript非常糟糕,但希望它可以引导你走向正确的方向。
I don't know about the serialize method, but if you run out of ideas you could use this function to create your own array as the data is being processed.
So you create a global array, and in your datatable creation method you have
Sorry, my javascript is pretty awful but hopefully that can guide you in the right direction.