RequestParam\@ResponseBody
为什么不写 RequestParam 也能拿到参数
三种写法,test(String name),
test(@RequestParam String name),
test(@RequestParam("userName") String name),
第一种如果没有name 参数不会报错,
第二种没有name 参数会报错,(也可以设置required = false),
第三种跟第二种的区别是name 参数换为userName。
@ResponseBody返回内容而不是路径,如ajax返回数据
本文来自博客园,作者:每天都要学一点,欢迎讨论和转载,转载请注明原文链接:https://www.cnblogs.com/yanan7890/p/6522417.html