0

我需要在 mvc 中使用 ajax 从列表框中发送多个选定的数据。我得到选定的数据。我不知道如何将数据 ajax 发送到控制器。我的代码如下:

var Students= [];

            var x = document.getElementById("ListBox");
            for (var i = 0; i < x.options.length; i++) {
                if (x.options[i].selected == true) {
                    Students.push(x.options[i].text)
                }
            }


 $.ajax({
                url: '',
                type: 'POST',
                data: { id:studenid, class: class,  Students: Students},
                dataType: 'json',
                success: function (data) {

                }
            }); // id:studenid, class:classs values are send it properly how to add the students?
4

4 回答 4

0

//发送宽度参数名称

   $.ajax({
      type: "POST",
      url: "Default.aspx/GetDate",
      data: { paramName: Students},
      contentType: "application/json; charset=utf-8",
      dataType: "json",
      success: function(msg) {

      }
    });



  //Get value
    [WebMethod]
    public static string GetValue(string paramName)
      {

      }

在通用处理程序中

//Send
 $.ajax({
          type: "POST",
          url:'/MyHandler.ashx?students=Students,
          contentType: "application/json; charset=utf-8",
          dataType: "json",
          success: function(msg) {

          }
        });

//Get

public void ProcessRequest(HttpContext context)
{
    string students= (string)context.Request["students"];
}
于 2013-02-15T13:18:39.800 回答
0
var Students= [];

            var x = document.getElementById("ListBox");
            for (var i = 0; i < x.options.length; i++) {
                if (x.options[i].selected == true) {
                    Students.push(x.options[i].text)
                }
            }
$.ajax({
   type: "POST",
   data: {StudentList:Students},
   url: "index.aspx",
   success: function(msg){
     alert(msg);
   }
});
于 2013-02-15T13:23:12.303 回答
0

您的url:''字段为空。您需要在那里添加一些 URL,您已经为其编写了准备接受数据的服务器端代码。

而且,当然,我猜您希望发送data:{Student:Students}而不是data:{User:Users}. 最好data:{Student:Students}

于 2013-02-15T13:13:59.633 回答
0

请确认您传递给控制器​​的“学生”对象的数据类型。

尝试使用数组数据类型,

Public ActionResult SendData(string id, string class,Array  Students)
{

}

如果它不起作用,则使用 demeter(,) 将 Javascript 数组转换为字符串数组并在下面使用

Public ActionResult SendData(string id, string class,string Students)
{

}

这将对您有所帮助。谢谢。

于 2013-02-16T20:15:48.007 回答