我在index.html页面中使用ui-router和ui-view。我已经定义了状态,所有路由都正常工作。现在我想显示一个错误页面,而不显示index.html中的页眉/页脚。有可能吗?
答案 0 :(得分:0)
我认为你可以这样定义:
.when('/error-page/', {templateUrl: 'app/error.template.html', controller: ErrorCtrl})
.otherwise({redirectTo: '/error-page/'});