将输入数据序列化到 List的任何快速方法都可以用 jQuery?

发布于 2024-11-01 02:05:28 字数 926 浏览 1 评论 0原文

假设我有一个对象:

Person
{
   public string FirstName {get;set;}
   public string LastName {get;set;}
}

在客户端,用户获得一个包含一大堆输入文本的表,用于添加/编辑这些“人”。

<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>
<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>
<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>

控制器操作需要 List

public ActionResult SavePeople (List<Person> people)
{ ..... }

输入数据通过 AJAX 调用提交给操作。序列化所有输入数据的最简单方法是什么?我不想手动构建 JavaScript 数组等。类似 $('table input').serialize()...

Let's say I have an object:

Person
{
   public string FirstName {get;set;}
   public string LastName {get;set;}
}

On the client side, the user gets a table with a whole bunch of input texts for adding/editing these "people".

<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>
<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>
<tr>
  <td><input type="text" name="FirstName"/></td>
  <td><input type="text" name="LastName"/></td>
</tr>

The controller action is expecting a List<Person>:

public ActionResult SavePeople (List<Person> people)
{ ..... }

Input data is submitted to the Action with AJAX call. What is the easiest way to serialize all that input data? I don't want to manually build a JavaScript array, etc. Something like $('table input').serialize()...

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

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

发布评论

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

评论(1

一曲琵琶半遮面シ 2024-11-08 02:05:28

如果它已经封装在表格中...

$('form').serialize();

If it's already wrapped in a form...

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