1
@RequestMapping(value = "/update/updateTask", method = RequestMethod.POST){
    ...
    return "updateContract";
}

我将如何指定带有选项卡的页面?例如,我需要的是“updatecontract#tab1”。如果我指定,它不起作用。

帮助!!

4

1 回答 1

3

您需要在您的退货声明中使用“重定向”

例子

@RequestMapping(value = "/update/updateTask", method = RequestMethod.POST){
    ...
    return "redirect:updateContract#tab1";
}
于 2012-10-02T16:39:43.933 回答