ui-router显示没有ui-view的错误页面

时间:2014-05-04 06:56:27

标签: angularjs angular-ui-router

我在index.html页面中使用ui-router和ui-view。我已经定义了状态,所有路由都正常工作。现在我想显示一个错误页面,而不显示index.html中的页眉/页脚。有可能吗?

1 个答案:

答案 0 :(得分:0)

我认为你可以这样定义:

.when('/error-page/', {templateUrl: 'app/error.template.html', controller: ErrorCtrl})
.otherwise({redirectTo: '/error-page/'});