AngularJs: Reload page

前端 未结 13 2161
孤城傲影
孤城傲影 2020-11-28 19:28
PORTAL_NAME

I want to reload the page. How can I do this?

13条回答
  •  孤城傲影
    2020-11-28 20:08

    My solution to avoid the infinite loop was to create another state which have made the redirection:

    $stateProvider.state('app.admin.main', {
        url: '/admin/main',
        authenticate: 'admin',
        controller: ($state, $window) => {
          $state.go('app.admin.overview').then(() => {
            $window.location.reload();
          });
        }
      });
    

提交回复
热议问题