Loading

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

 

posted @ 2017-03-24 07:11  stono  阅读(3665)  评论(0)    收藏  举报