前端://定义json数据var parentData = { functionName:parentName, functionCode:parentCode };//将json数据转成字符串,方便在ajax中传递var functionList = JSON.stringify(parentData);后台: @RequestMapping(value="/add") @ResponseBody public JSONObject add(String functionList){ try { String[] functionsArr = functionList.split(";"); if(functionsArr.length>0){ for(int i=0;i