ajax向后台传递list参数

版权声明:转载请注明作者及出处,否则将追究法律责任。 https://blog.csdn.net/q2158798/article/details/83958433

学习记录:复习

使用ajax向后台传递list参数

前台

jsp页面

<button onclick="login222();">测试</button>

js

function login222() {
	var list = [];

	for (var i = 1; i <= 5; i++) {
		var admin = {};
		admin.id = i;
		admin.grade = i;
		admin.key = "第" + i + "条数据的key属性";
		admin.value = "第" + i + "条数据的value属性";
		admin.url = "第" + i + "条数据的url属性";
		admin.orderx = i;
		list.push(admin);
	}
	$.ajax({
		type : "post",
		url : "/login2",
		contentType : 'application/json; charset=UTF-8',
		data : JSON.stringify(list),
		dataType : "json",
		async : false,
		success : function(data) {
			if (data) {
				alert("操作成功");
			} else {
				alert("操作失败");
			}
		}
	});

}

action

@RequestMapping(path = "/login2")
@ResponseBody
public String login2(@RequestBody List<AdminVO> voList, Model model) {
		try {
			for (AdminVO vo : voList) {
				System.err.println(vo);
			}
			return "true";
		} catch (Exception e) {
			return "false";
		}
		
	}

实体类属性

private static final long serialVersionUID = 1L;
	private Integer id;
	private Integer grade;
	private String key;
	private String value;
	private String url;
	private Integer orderx;
	//get、set方法...

猜你喜欢

转载自blog.csdn.net/q2158798/article/details/83958433