需求
前台有许多字段需要用ajax传送给后台, 如果给直接将字段封装成JSON对象传给后台会很方便
解决
- ajax 发送
var str = {"name":"xiaoming","sex":"男"}
var JSONObj = JSON.stringify(str)
// 如果发送json对象
$.ajax({
contentType : "application/json",
data : {
key : JSONObj
}
});
// 或
$.ajax({
contentType : "application/json",
data : JSONObj
});
// 这里还是使用发送json字符串
$.ajax({
data : {
key : JSONObj
}
});
参考文档
- http://api.jquery.com/jQuery.ajax/ 中 "Sending Data to the Server" 段落中介绍修改contentType的 MIME type更适合
- https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Basics_of_HTTP/MIME_types 中介绍了
"multipart/form-data" 这个 MIME类型
- 后台接收
如果直接接收json对象比较麻烦, 这里还是直接取json字符串
spring mvc接收