Json对象与json字符串
json对象:var person={“name”:“shily”,“sex”:“女”,“age”:“23”}
json字符串:var str = ‘{“name”:“shily”,“sex”:“女”,“age”:“23”}’
转换:Json对象转化为Json字符串( JSON.stringify() ) Json字符串转化为Json对象( JSON.parse() ) 绑定:json字符串&contentType:”application/json”&@RequestBody(对象接收)
axios:axios 使用 post 发送数据时,默认是直接把 json 放到请求体中提交到后端的。也就是说,我们的 Content-Type 变成了 application/json;charset=utf-8
设置Content-Type:axios.defaults.headers.post[‘Content-Type’] = ‘application/x-www-form-urlencoded’;
ajax:如ajax 请求时不设置任何contentType,默认将使用contentType: "application/json”application/x-www-form-urlencoded
|