vue-axios-post方式传递对象至后台
1.对象参数类型JSON化:data:JSON.parse(JSON.stringify(object)),2.头部信息headers:"Content-Type": "application/json; charset=UTF-8"3.service中请求方式写为POST4.后台control
·
1.对象参数类型JSON化: data:JSON.stringify(object),
2.头部信息headers: "Content-Type": "application/json; charset=UTF-8"
3.service中请求方式写为POST
,newsObject是对象类型
4.后台controller中获得参数方式:@RequestBody String Object
5.String转换为json:JSONObject accident=JSONObject.fromObject(newsObject);
(注:JSONObject将外部为{}的String类型转换为JSONObject;JSONArray是将外部为[]的String类型转换为JSONArray)
更多推荐
已为社区贡献1条内容
所有评论(0)