我需要将后端细分为仪表板布局和登录布局。它必须是两种不同的布局。
我如何使用 angular-ui-router 实现这一点?
索引.html
<body ng-controller="MainCtrl">
...
<div id="page-wrapper" ui-view>
...
JS
app.config(['$stateProvider', function($stateProvider){
$stateProvider.
state('login', {
url: '/login',
templateUrl: 'assets/templates/login.html',
controller: 'AuthCtrl'
}).
state('/products', {
url: '/products',
templateUrl: 'assets/templates/product-list.html',
controller: 'ProductListCtrl'
}).
state('/categories', {
url: '/categories',
templateUrl: 'assets/templates/category-list.html',
controller: 'CategoryListCtrl'
}).
state('/product/add', {
url: '/product/add',
templateUrl: 'assets/templates/add-product.html',
controller: 'AddProductCtrl'
}).
...
}]);