您好,登錄后才能下訂單哦!
這篇文章主要介紹SpringMVC 重定向參數(shù)RedirectAttributes的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
SpringMVC 中常用到 redirect 來實(shí)現(xiàn)重定向。但使用場(chǎng)景各有需求,如果只是簡(jiǎn)單的頁(yè)面跳轉(zhuǎn)顯然無(wú)法滿足所有要求,比如重定向時(shí)需要在 url 中拼接參數(shù),或者返回的頁(yè)面需要傳遞 Model。
SpringMVC 用 RedirectAttributes 解決了這兩個(gè)需要。
@RequestMapping("/save") public String save(User user, RedirectAttributes redirectAttributes) { redirectAttributes.addAttribute("param", "value1"); return "redirect:/index"; }
請(qǐng)求 /save 后,跳轉(zhuǎn)至/index,并且會(huì)在url拼接 ?param=value1。
@RequestMapping("/save") public String save(User user, RedirectAttributes redirectAttributes) { redirectAttributes.addFlashAttribute("param", "value1"); return "redirect:/index"; }
請(qǐng)求 /save 后,跳轉(zhuǎn)至 /index,并且可以在 index 對(duì)應(yīng)的模版中通過表達(dá)式,比如 jsp 中 jstl 用 ${param},獲取返回值。該值其實(shí)是保存在 session 中的,并且會(huì)在下次重定向請(qǐng)求時(shí)刪除。
RedirectAttributes 中兩個(gè)方法的簡(jiǎn)單介紹就是這樣。
A.jsp發(fā)送請(qǐng)求進(jìn)入Controller,并想重定向到B.jsp并攜帶參數(shù),發(fā)現(xiàn)攜帶的參數(shù)前臺(tái)獲取不到,然后采用以下方法即可
@RequestMapping("/index") public String delete(String id, RedirectAttributes redirectAttributes) { redirectAttributes.addFlashAttribute("msg","刪除成功!"); return "redirect:hello"; }
@RequestMapping("hello") public String index( @ModelAttribute("msg") String msg) { return "sentinel"; }
首先進(jìn)入delete方法,將msg放在redirectAttributes里,然后重定向到hello,通過@ModelAttribute(“msg”) String msg獲取到msg的值,那么自然sentinel頁(yè)面就能獲取到msg的值。
B.jsp發(fā)送請(qǐng)求,跳轉(zhuǎn)到A.jsp,并將請(qǐng)求所產(chǎn)生的數(shù)據(jù)攜帶到A頁(yè)面。
以上是“SpringMVC 重定向參數(shù)RedirectAttributes的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。