5

我有一个HTML包含多个相同名称字段的表单。例如:

  <form action="" method="post" id="form">
    <div class="itemsection" id="item1">
      <input type="text" name="Price" />
      <input type="text" name="Name" />
      <input type="text" name="Catagory" />
    </div>
    <div class="itemsection" id="item2">
      <input type="text" name="Price" />
      <input type="text" name="Product" />
      <input type="text" name="Catagory" />
    </div>
    <div class="itemsection" id="item3">
      <input type="text" name="Price" />
      <input type="text" name="Product" />
      <input type="text" name="Catagory" />
    </div>
  </form>

现在在服务器端(C#),我有一个动作方法和一个模型类Product

    //Action method accepts the form on server //It require the Product array 
    public ActionResult SaveItem(Product[] products)
    {
         .....
         ...
    }

    //Model class product
    public Class Product
    {
      public int Id { get; set; }
      public double Price { get; set; }
      public string Name { get; set; }
      public string Catagory { get; set; }
    }

现在我的问题是:我正在使用jquery $.ajax method. 在服务器端,action 方法接受一个Product类数组。现在如何将表单字段转换为Json数组(类似于产品数组)。我试过:

   $("#form").serialize();  
           &
   $("#form").serializeArray();

第一个生成所有表单字段的名称-值对,第二个生成所有表单字段的名称-值数组。我的要求是:

  //currently my form contains 3 item section so :
   [
    { "Price" : "value", "Name" : "value", "Catagory" : "value" }, 
    { "Price" : "value", "Name" : "value", "Catagory" : "value" }
    { "Price" : "value", "Name" : "value", "Catagory" : "value" }
   ]

谁能告诉我如何通过JavaScriptor实现这一目标JQuery

4

3 回答 3

1

您可以使用该map方法。

var data = $('.itemsection').map(function(){
     return {
        Price: $('input[name="Price"]', this).val(),        
        Product: $('input[name="Product"]', this).val(),
        Category: $('input[name="Category"]', this).val()   
     }
}).get();

http://jsfiddle.net/KRJJ7/

于 2012-10-25T19:48:50.583 回答
0

如果是这种情况,您可以使用.map()

var arr = $('form :input').map(function() {
              return { 'Price' : $(this).attr('Price') , 
                        'Name' : $(this).attr('Name') ,
                        'Category' : $(this).attr('Category') ,
                      }
          }).get();   // get() will convert them into an array
于 2012-10-25T19:45:36.900 回答
0

您还可以使用 jQuery++ 的 formParams http://jquerypp.com/#formparams

于 2012-10-25T19:51:29.553 回答