在Spring MVC中,獲取前端值的方法有以下幾種:
@RequestMapping("/hello")
public String hello(@RequestParam("name") String name) {
// 處理邏輯
return "hello";
}
這里的name參數對應前端傳遞過來的name參數。
@RequestMapping("/hello/{name}")
public String hello(@PathVariable("name") String name) {
// 處理邏輯
return "hello";
}
這里的name參數對應請求路徑中的name值。
@RequestMapping("/submit")
public String submit(@ModelAttribute("user") User user) {
// 處理邏輯
return "submit";
}
這里的user參數對應前端表單中的屬性名。
@RequestMapping("/hello")
public String hello(HttpServletRequest request) {
String name = request.getParameter("name");
// 處理邏輯
return "hello";
}
這里使用request.getParameter方法來獲取請求參數的值。
以上是一些常用的獲取前端值的方法,根據實際情況選擇合適的方法進行使用。