Springmvc ajax-json提交 转换成List

提交方式:
var data=decodeURIComponent($("# ghsthclForm").serialize(),true);
$.ajax({
        type: "POST",
        url:Common.basePath()+"/ghsthclController.do?onSaveOrUpdateGhsthcl",
        data:JSON.stringify({deleteId:'',data:formToJson(data)}),
        contentType:"application/json",
        dataType:"json",
        success:function(data){
           layer.alert(data.msg);
           TabUtils.closeActiveTabAndActiveParentTab(true);
           }
        });
//接收方式
@RequestMapping(params="vailTFoodGhsthclBeforeSave")
@ResponseBody
public JsonMsgModel vailTFoodGhsthclBeforeSave(@RequestBody Map queryMap){
      List list =JSON.parseArray(queryMap.get("data"), HashMap.class);
}












你可能感兴趣的:(springmvc)