redirect重定向Controller中两个Controller之间传递参数

RedirectAttributes

@RequestMapping("/test1")
public String test1(RedirectAttributes attributes) {
    attributes.addFlashAttribute("msg1", "传递的参数数据");
    return "redirect:/test2";  //重定向
}

@GetMapping("/test2")
public String test2(@ModelAttribute("msg1") String msg1,Model model) {
     model.addAttribute("msg", msg1);
    return "/index";//跳转页面
}

上一篇:vue


下一篇:网友用Python炫技却被骂,为啥?