ปัญหานี้ดูเหมือนจะไม่สำคัญ แต่ฉันไม่สามารถทำให้มันทำงานได้อย่างถูกต้อง ฉันกำลังเรียกการแมปคอนโทรลเลอร์ Spring ด้วย jquery ajax ค่าสำหรับ someAttr เป็นสตริงว่างเสมอโดยไม่คำนึงถึงค่าใน url โปรดช่วยฉันระบุสาเหตุ
-URL เรียกว่า
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".
}
@RequestParam
โปรดดูที่docs.spring.io/spring/docs/current/javadoc-api/org/…