您好,登錄后才能下訂單哦!
在Spring MVC中,可以使用RedirectAttributes來傳遞重定向后的數據。下面是一個簡單的示例:
@Controller
public class MyController {
@RequestMapping("/redirect")
public String redirectToPage(RedirectAttributes redirectAttributes) {
// 添加重定向后的數據
redirectAttributes.addFlashAttribute("message", "Redirected successfully!");
return "redirect:/targetPage";
}
@RequestMapping("/targetPage")
public String targetPage(@ModelAttribute("message") String message) {
// 獲取重定向前傳遞的數據
System.out.println("Message: " + message);
return "targetPage";
}
}
在上面的示例中,redirectToPage
方法重定向到targetPage
頁面,并將消息"Redirected successfully!"
通過RedirectAttributes
傳遞給targetPage
頁面。在targetPage
方法中,可以通過@ModelAttribute
注解獲取重定向前傳遞的數據并進行處理。
需要注意的是,RedirectAttributes
中添加的數據使用addFlashAttribute
方法,這樣可以確保數據只在重定向過程中傳遞,在目標頁面中可以通過@ModelAttribute
注解獲取到這些數據。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。