我有一个AngularJS应用程序从index.html开始,并使用ui-router。基于触发器,我想重新加载完整的页面。我试过了:
$state.go($state.current,$stateParams,{ reload: true,inherit: false,notify: true });
但这不行。它不会重新加载我的初始index.html。
我可以:
window.location.href = "index.html";
但是,我在我的初始页面,而不是当前的状态。
应该设置window.location.href到index.html与查询字符串参数指定当前位置?如果我这样做,我如何导航到这个位置?
目前的诀窍是:
原文链接:https://www.f2er.com/angularjs/144301.html$state.go($state.current.name,$state.params,{ reload: true });