0
UI路由器的問題,我有以下狀態:與查詢字符串
.state('message', {
url : '/message'
templateUrl : 'views/message.html',
controller : 'messageController'
})
.state('news', {
url : '/news'
templateUrl: 'views/news.html',
controller : 'newsController'
})
在messageController
我追加了一些查詢字符串的URL像/message?contact=some
。
問題是,當轉到ui-sref
的新聞狀態時,查詢字符串不會被清除,而是會重定向到/news?contact=some
。
我試圖在stateChangeEvent
中清除$location.search
。
有幫助嗎?
@阿爾俊這是在工作嗎? – 2015-02-11 20:29:11