热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

.netMVCajax传递数组

创建一个测试数组varboxIdsnewArray();boxIds.push(12182);boxIds.push(12183);boxIds.push(12184);

//创建一个测试数组
var boxIds = new Array();
boxIds.push(12182);
boxIds.push(12183);
boxIds.push(12184);
//向后台交互
$.ajax({url: "/xxx",type: "GET",data: {"boxIds": boxIds,"boxType": 0,"time": new Date().getTime()},success: function(data) {//do sth...}
});

后台收不到值。

解决办法: 
设置jQuery.ajax的tradional属性

 

1 $.ajax({
2 url: "/xxx",
3 type: "GET",
4 data: {
5 "boxIds": boxIds,
6 "boxType": 0,
7 "time": new Date().getTime()
8 },
9 traditional: true,//这里设置为true
10 success: function(data) {
11 //do sth...
12 }
13 });

 

转:https://www.cnblogs.com/haobadea/p/6226927.html



推荐阅读
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有