前台JSON字符串,spring mvc controller也接收字符串

前台JSON字符串,spring mvc controller也接收字符串

前台:

    $.post(url, {
data : JSON.stringify(obj)
}, function(data) {
alert(data.res);
}, 'json'); });

Controller:

    @RequestMapping(value="create2")
@ResponseBody
public Map<String, Object> create2(String data){
......
上一篇:php – RabbitMQ实现


下一篇:iOS开发CoreAnimation解读之三——几种常用Layer的使用解析