前后端传数据时两者key值不一致的问题

java类的属性名称和前端所需json数据的key值不同

在类的属性上方添加注解指定其key的名称

@JsonProperty("n")
private String names;
前端传递参数名称和后端方法中定义的参数名称不同

在方法的参数前添加注解指定前端参数名称

@RequestMapping("/content/category/tree")
@ResponseBody
public List<EasyUITreeNode> getContentCatTree(@RequestParam(value = "id", defaultValue = "0")Long parentId){
	List<EasyUITreeNode> res = contentCatService.getContentCatTree(parentId);
	return res;
}

你可能感兴趣的:(工程)