我想在不刷新頁面的情況下更改網址。例如我的網址是http://test.com?search=test
更改查詢字符串,無需重新加載/刷新
當我點擊像「類別」的搜索頁面上的任何過濾器值,那麼我的網址應該是:
http://test.com?search=test$category=cat1
當我點擊另一類別應該是:
http://test.com?search=test&category=cat1,cat2
當我點擊一個品牌那麼URL應該是:
http://test.com?search=test$category=cat1,cat2&brand=br1
當我取消選擇一個類別,然後網址應該是:
http://test.com?search=test$category=cat2&brand=br1
請幫我。
你使用的是路由器嗎? –
不,我不使用ui路由器 –
我有同樣的問題。閱讀[this](http://stackoverflow.com/questions/3338642/updating-address-bar-with-new-url-without-hash-or-reloading-the-page)。 – jmtb