本文介绍了否则在 StateProvider 上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 angular-ui-router,我如何在 otherwise 方法上使用 $stateProvider 或者我该如何使用它?
Using angular-ui-router, How can I use the otherwise method on $stateProvider or how can I use it at all ?
推荐答案
你不能只使用 $stateProvider
.
您需要注入 $urlRouterProvider
并创建类似于以下内容的代码:
You need to inject $urlRouterProvider
and create a code similar to:
$urlRouterProvider.otherwise('/otherwise');
/otherwise
url 必须像往常一样在状态上定义:
The /otherwise
url must be defined on a state as usual:
$stateProvider
.state("otherwise", { url : '/otherwise'...})
查看此链接,ksperling 解释
这篇关于否则在 StateProvider 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!