如果用户碰巧从任何其他路线刷新,那么将用户引导到主页的最佳方式是什么(如果您正在使用ui-router,则说明状态如此)。
例如 - 我希望它们在inventory
页面上开始。如果他们想要进行修改,他们会前往edits
页面,但如果他们刷新该页面,他们会再次直接转到inventory
路线。
答案 0 :(得分:6)
我没有使用ui-router但是在ng-route我们可以这样做
<body ng-controller="topController"> <div ng-view></div> </body>
$ location.path(&#34; /&#34)
假设&#34; /&#34;是您想要在刷新后重定向的主页面,不要忘记定义$ location
答案 1 :(得分:0)
$(".modal").on("hide.bs.modal", function(){
$(".modal-bodydata").html("");
});
答案 2 :(得分:-1)
假设#/inventory
是您的路线,请使用otherwise
$urlRouterProvider.otherwise("/inventory");