嗨,我是 Spring 新手,在使用两个不同的控制器在两个页面之间传递数据时遇到问题。我想知道如何处理这种情况。在我的 index.html 中,我有一个按钮,可以将我重定向到传递一些数据的新页面。当我单击按钮时,它会将我重定向到 step2 页面,但我不需要对象。我该如何解决这个问题?GET 方法是否正确?我是否必须使用表单来在页面和控制器之间传递一些数据?下面是我所拥有的。
索引.html
<form th:action="@{/step2}" method="GET">
<input type="hidden" th:value="${mapSelectedServices}" name="mapSelectedServices"/>
<input type="hidden" th:value="${user}" name="loggedUser"/>
<div class="form-group d-flex align-items-center justify-content-between">
<button type="submit" class="btn btn-danger btn-rounded ml-auto" >SEE PRICES
<i class="fas fa-long-arrow-alt-right ml-2"></i>
</button>
</div>
</form>
Step2控制器
@RequestMapping(value="step2", method = RequestMethod.GET)
public ModelAndView step2(ModelAndView modelAndView, @ModelAttribute("user") User user,
@ModelAttribute("mapSelectedServices") HashMap<String,List<ServiceOffered>> mapSelectedServices,
BindingResult bindingResult){
modelAndView.addObject("user", user);
modelAndView.addObject("mapSelectedServices", mapSelectedServices);
modelAndView.setViewName("step2");
return modelAndView;
}
抱歉所有问题,但我是春季开发的新手。