AngularJS ui-router:强制重新加载

前端之家收集整理的这篇文章主要介绍了AngularJS ui-router:强制重新加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个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与查询字符串参数指定当前位置?如果我这样做,我如何导航到这个位置?

目前的诀窍是:

$state.go($state.current.name,$state.params,{ reload: true });

原文链接:https://www.f2er.com/angularjs/144301.html

猜你在找的Angularjs相关文章