@RequestMapping(value = "/update/updateTask", method = RequestMethod.POST){
...
return "updateContract";
}
如何指定带标签的页面?例如,我需要的是" updatecontract#tab1"。 如果我指明这一点,它就不起作用。
帮助!!
答案 0 :(得分:3)
您需要在退货声明中使用“重定向”
示例
@RequestMapping(value = "/update/updateTask", method = RequestMethod.POST){
...
return "redirect:updateContract#tab1";
}