最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Back button when reloadOnSearch:false - Stack Overflow

programmeradmin3浏览0评论

I've got ngView with three ngIncluded views: search filters, products, pagination. I want to:

  1. filter products without reloading whole page just products view
  2. add filters to the url eg. ?category=shoes
  3. be able to use back and next buttons

I set reloadOnSearch: false in $routeProvier.when. Now when I invoke $location.search() function url changes, but the page is not reloaded. That's what I wanted to achieve, but when I click back button the products does not reload to its previous state. The only thing which happens is a change of url. The question is how can I handle back and next button events in this situation?

I've got ngView with three ngIncluded views: search filters, products, pagination. I want to:

  1. filter products without reloading whole page just products view
  2. add filters to the url eg. ?category=shoes
  3. be able to use back and next buttons

I set reloadOnSearch: false in $routeProvier.when. Now when I invoke $location.search() function url changes, but the page is not reloaded. That's what I wanted to achieve, but when I click back button the products does not reload to its previous state. The only thing which happens is a change of url. The question is how can I handle back and next button events in this situation?

Share Improve this question asked Sep 23, 2013 at 23:48 Maniek StaszManiek Stasz 3473 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

If you do reloadOnSearch:false, the same instance of the controller is used and any back forward does not reload any controller or related view. You need to respond to $routeUpdate event that gets raised in such scenarios. See $route documentation regarding this.

$scope.$on('$routeUpdate',function(e) {
   // Code to handle the route change.
});

You have to handle everything manually. It means that when you press the back or the next button you have to get back to the state you where using the $location.

发布评论

评论列表(0)

  1. 暂无评论