gpt4 book ai didi

springboot如何重定向携带数据 RedirectAttributes

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 44 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章springboot如何重定向携带数据 RedirectAttributes由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

当controller层需要重定向到指定页面时,如何携带数据?

  • 传统使用session
  • 使用RedirectAttributes. (利用session原理)
  • 优点:提供了addFlashAttribute 等方法.确保数据只能被使用一次后删除

RedirectAttributes的使用

?
1
2
3
4
5
6
7
8
9
public interface RedirectAttributes extends Model {
     RedirectAttributes addAttribute(String var1, @Nullable Object var2);
     RedirectAttributes addAttribute(Object var1);
     RedirectAttributes addAllAttributes(Collection<?> var1);
     RedirectAttributes mergeAttributes(Map<String, ?> var1);
     RedirectAttributes addFlashAttribute(String var1, @Nullable Object var2);
     RedirectAttributes addFlashAttribute(Object var1);
     Map<String, ?> getFlashAttributes();
}
  • 直接在Controller的参数中添加RedirectAttributes.
  • addFlashAttribute会在重定向到下一个页面取出这个数据以后,将session里面的数据删除\
  • addFlashAttribute 方法会将数据存储在session中,访问一次后失效
?
1
2
3
4
5
6
@PostMapping ( "/regist" )
public String register(RedirectAttributes attribdatautes){
     int data = 1 ;
     attributes.addFlashAttribute( "data" ,data);
     return "redirect:http://auth.gulimail.com/reg.html" ;
}
  • addAttribute 方法会将数据拼接在url后(get的形式)
?
1
2
3
4
5
6
@GetMapping ( "/addToCartSuccess.html" )
     public String addToCartSuccessPagez( @RequestParam ( "skuId" ) Long skuId,Model model){
         CartItem cartItem = cartService.selectCartItemInfo(skuId);
         model.addAttribute( "item" ,cartItem);
         return "success" ;
     }

RedirectAttributes存值后读取不到

首先,检查Controller上面是@Controller还是@RestController(两者区别自行百度) 。

其次,如下 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@GetMapping ( "/redirect" )
public String redirect(RedirectAttributes redirectAttributes)
{
     redirectAttributes.addFlashAttribute( "test" , 1 );
     return "redirect:/show" ;
}
 
@GetMapping ( "/show" )
@ResponseBody
//必须要添加@ModelAttribute标签,否侧将读不到值
//且必须指定变量名,并不会自动做匹配
public Map<String, Object> show( @ModelAttribute ( "test" ) int test)
{
     Map<String, Object> modelMap = new HashMap<>();
     modelMap.put( "String" , test);
     return modelMap;
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我。  。

原文链接:https://blog.csdn.net/weixin_44634197/article/details/108399279 。

最后此篇关于springboot如何重定向携带数据 RedirectAttributes的文章就讲到这里了,如果你想了解更多关于springboot如何重定向携带数据 RedirectAttributes的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

44 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com