JSON.stringify
http://www.runoob.com/json/json-stringify.html
传送门
FastJson
http://www.runoob.com/w3cnote/fastjson-intro.html
传送门
通过java接收ajax数据
ajax发送:
$.ajax({
data:{
请求参数:值,
(举个栗子)
student:JSON.stringify(student)
}
})
java接收:request.getParameter("student")
可得到字符串化的student对象