2017-10-16 97 views
0

如何在spring mvc中向www.MyApplication/account#tochange發送請求。 其實在我的菜單中有兩個選項,第一次更改密碼n第二次註冊。 這兩個選項都重定向到同一頁面www.MyApplication/account,它們有Tab風格的jquery滑動窗體。 而基本選項卡是www.MyApplication/account#tosignup如何在spring中的「#」之後添加內容MVC 3

我只是想要點擊更改密碼選項,它直接轉到www.MyApplication/account#tochange

在servlet的<a href="registration.jsp#toregister">change</a>

什麼Spring MVC中做實現這一目標。

控制器

@Controller 
public class AccountController { 

    @RequestMapping("/account") 
    public ModelAndView signup(){ 

     ModelAndView model = new ModelAndView("registration"); 

     return model; 
    } 

這需要我www.MyApplication /帳戶。我能做什麼去www.MyApplication/account#改變?

+0

你想要如何在每個標籤之間使用jquery在客戶端導航,或者當每個標籤上發生任何事情時如何調用spring controller? –

回答

0

您需要將請求參數傳遞到您的URL。該URL看起來像/account?action=[register|changepassword]。從控制器向前端發送一個標誌,如option=register|changepassword,然後根據選項分配活動類(或標籤索引)。

相關問題