2
我有settings page
和控制器是爲他Spring MVC的,Thymeleaf URL
@RequestMapping(value = "/settings/password/change", method = RequestMethod.GET)
public String changePassword(Model model) {
return "account/changepassword";
}
在此頁面上有header
其中包含myaccount
鏈接: <a class="link" th:href="${currentUser.nickname}"><li class="li">User profile</li></a>
但如果我打開頭settings page
鏈接有網址:localhost:8080/settings/password/change/profilename
。而不是我需要的URL如:localhost:8080/profilename
。我如何做到這一點?
非常感謝你,它幫助到我! –
不客氣。 –