使用数据表,我可以从表中获取数据并提交到服务器吗?

发布于 2025-01-08 20:22:01 字数 806 浏览 0 评论 0原文

我想要像 .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 技术交流群。

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

发布评论

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

评论(1

茶色山野 2025-01-15 20:22:02

我不知道序列化方法,但如果你没有想法,你可以使用这个函数 在处理数据时创建您自己的数组。

所以你创建了一个全局数组,并且在你的数据表创建方法中你有

$('#tablename').dataTable({
    "fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
                AddToArray(aData);
                return nRow;
      }
});

function AddToArray(aData){
    var user = aData[0];
    var name = aData[1];
    //add them to your array
}

抱歉,我的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

$('#tablename').dataTable({
    "fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
                AddToArray(aData);
                return nRow;
      }
});

function AddToArray(aData){
    var user = aData[0];
    var name = aData[1];
    //add them to your array
}

Sorry, my javascript is pretty awful but hopefully that can guide you in the right direction.

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