使用angular-ui-router,如何在$ stateProvider上使用else 方法,或者如何使用它?
您不能仅使用$stateProvider。
$stateProvider
您需要注入$urlRouterProvider并创建类似于以下内容的代码:
$urlRouterProvider
$urlRouterProvider.otherwise('/otherwise');
该/otherwiseURL必须在国家像往常一样被定义:
/otherwise
$stateProvider .state("otherwise", { url : '/otherwise'...})
在ksperling解释的地方看到此链接