3

我想将一个对象传递给控制器​​并检索控制器中的值。我已经定义为:

html代码:

 var positionarray = [];

Javascript:

 $("#button").live('click',function(){
     positionarray.push({
         id: sessionStorage.getItem('id'),
         value: $("#input").val() 
     });
 });

 // on save button click
 $.ajax({
       type: "GET",                                                 
       url:"/Bugs/Position",                                                 
       data: {
           array:positionarray      
       },
       cache: false,
       dataType: "json",
       contentType: "application/json; charset=utf-8",
       success: function (json) {

       }
 });

但我无法检索控制器中的值。它变得空了。

4

3 回答 3

5

试试这个:- 你正在传递一个对象数组,所以你应该做 HTTPPost 而不是 HttpGet(这将适用于原始类型数组,比如 int、strgin 等列表)通过查询字符串发送它(记住查询字符串的限制)。用 HTTPPost 试试这个

 $.ajax({
       type: "POST",                     
       url:"Home/Position",                                                 
       data: JSON.stringify({
              array: positionarray
       }),
       cache: false,
       dataType: "json",
       contentType: "application/json; charset=utf-8",
       success: function (json) {

       }

[HTTPPost]
public void Position(YourClass[] array){...
于 2013-04-29T05:23:53.447 回答
0

试试这个:

$.ajax({
       type: "GET",                                                 
       url:"/Bugs/Position",                                                 
       data: 'array='+positionarray      
       cache: false,
       dataType: "json",
       contentType: "application/json; charset=utf-8",
       success: function (json) {

       }
});
于 2013-04-29T04:57:16.347 回答
0

试试这个:

ajax call必须在按钮单击功能中才能使用,

在您的代码中,您ajax call在单击之前运行,因此它将null传递 给您的控制器

$("#button").live('click',function(){
     positionarray.push({
         id: sessionStorage.getItem('id'),
         value: $("#input").val() 
     });


    // on save button click
    // this code must run after `button click` and after pushing data in
    // positionarray variable
    $.ajax({
           type: "GET",                                                 
           url:"/Bugs/Position",                                                 
           data: {
               array:positionarray      
           },
           cache: false,
           dataType: "json",
           contentType: "application/json; charset=utf-8",
           success: function (json) {

           }
    });// here ajax function code ends

});// here button click function ends
于 2013-04-29T05:18:25.450 回答