最佳答案
这个问题看起来微不足道,但我无法让它正常工作。我用 jquery ajax 调用我的 Spring 控制器映射。不管 url 中的值是什么,somAttr 的值始终是空字符串。请帮我查明原因。
网址呼叫
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
- 控制器映射
@RequestMapping(value={"/{someID}"}, method=RequestMethod.GET)
public @ResponseBody int getAttr(@PathVariable(value="someID") final String id,
@ModelAttribute(value="someAttr") String someAttr) {
//I hit some code here but the value for the ModelAttribute 'someAttr' is empty string. The value for id is correctly set to "1".
}