AngularJS ui-router: force reload

前端 未结 5 1252
执笔经年
执笔经年 2020-12-30 00:59

I have an AngularJS app starting at index.html and using ui-router. Based on a trigger I want to reload the complete page. I tried:

$state.go($state.current,         


        
5条回答
  •  青春惊慌失措
    2020-12-30 01:29

    Try this:

    $state.transitionTo($state.current, $stateParams, {
        reload: true,
        inherit: false,
        notify: true
    });
    

提交回复
热议问题