欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery Ajax向服务端传递数组参数值的实例代码

程序员文章站 2022-09-08 11:14:26
在使用mvc时,向服务器端发送post请求时有时需要传递数组作为参数值 下面使用例子说明,首先看一下action [httppost] public acti...

在使用mvc时,向服务器端发送post请求时有时需要传递数组作为参数值

下面使用例子说明,首先看一下action

[httppost]
public actionresult test(list<string> model)
{
 return json(null, jsonrequestbehavior.allowget);
}

方式一,构造表单元素,然后调用serialize()方法得到构造参数字符串

@{
 layout = null;
}
<!doctype html>
<html>
<head>
 <meta name="viewport" content="width=device-width" />
 <title>test</title>
</head>
<body>
 <div>
  <input type="button" id="btnajax" value="发送请求" />
 </div>
 <script src="~/scripts/jquery-1.10.2.min.js"></script>
 <script type="text/javascript">
  var tmp = '<input type="hidden" name="model" value="1" /><input type="hidden" name="model" value="2" />';
  $(function () {
   $("#btnajax").click(function () {
    $.ajax({
     url: '@url.action("test")',
     type: 'post',
     data: $(tmp).serialize(),
     success: function (json) {
      console.log(json);
     }
    });
   });
  });
 </script>
</body>
</html>

调试模式监视参数,当点击按钮时,监视得到的参数如下

jQuery Ajax向服务端传递数组参数值的实例代码

jQuery Ajax向服务端传递数组参数值的实例代码

方式二:使用javascript对象作为参数传值,参数名是与action方法对应的参数名,参数值是javascript数组

@{
 layout = null;
}
<!doctype html>
<html>
<head>
 <meta name="viewport" content="width=device-width" />
 <title>test</title>
</head>
<body>
 <div>
  <input type="button" id="btnajax" value="发送请求" />
 </div>
 <script src="~/scripts/jquery-1.10.2.min.js"></script>
 <script type="text/javascript">
  //var tmp = '<input type="hidden" name="model" value="1" /><input type="hidden" name="model" value="2" />';
  var array = ["abc","123"];
  $(function () {
   $("#btnajax").click(function () {
    $.ajax({
     url: '@url.action("test")',
     type: 'post',
     data: {
      model:array
     },
     success: function (json) {
      console.log(json);
     }
    });
   });
  });
 </script>
</body>
</html>

jQuery Ajax向服务端传递数组参数值的实例代码

jQuery Ajax向服务端传递数组参数值的实例代码

方式三,使用json作为参数请求,此时ajax需要声明content-type为application/json

@{
 layout = null;
}
<!doctype html>
<html>
<head>
 <meta name="viewport" content="width=device-width" />
 <title>test</title>
</head>
<body>
 <div>
  <input type="button" id="btnajax" value="发送请求" />
 </div>
 <script src="~/scripts/jquery-1.10.2.min.js"></script>
 <script type="text/javascript">
  //var tmp = '<input type="hidden" name="model" value="1" /><input type="hidden" name="model" value="2" />';
  //var array = ["abc","123"];
  $(function () {
   $("#btnajax").click(function () {
    $.ajax({
     url: '@url.action("test")',
     type: 'post',
     contenttype:'application/json;charset=utf-8',
     data: json.stringify({
      model:["hello","welcome"]
     }),
     success: function (json) {
      console.log(json);
     }
    });
   });
  });
 </script>
</body>
</html>

jQuery Ajax向服务端传递数组参数值的实例代码

jQuery Ajax向服务端传递数组参数值的实例代码

上面的例子使用的是asp.net mvc 5

总结

以上所述是小编给大家介绍的jquery ajax向服务端传递数组参数值的实例代码,希望对大家有所帮助