前台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){
......

 

相关文章: