我需要构建基于权限的管理信息中心。 html的标题由一些主要的hav组成,最后一个导航用于Settings
。我使用angular-ui-router
作为州。当用户转到Settings
链接时,我需要从用户有权访问的服务器选项卡上传。
我的州提供者
$stateProvider
.state('home', {
url: "/",
templateUrl: "templates/home/index.html"
})
.state('settings', {
url: "/settings",
controller: "SettingsController",
templateUrl: "templates/home/settings.html",
})
.state('settings.users', {
url: "/users",
controller: "SettingsUsersController",
templateUrl: "templates/home/settings/users.html",
})
.state('settings.roles', {
url: "/roles",
controller: "SettingsRolesController",
templateUrl: "templates/home/settings/roles.html",
});
SettingsController
看起来像这样:
app.controller('SettingsController', ['$scope', '$http',
function($scope, $http) {
$scope.tabs = [];
$http({
method: 'GET',
url: '/api/menu/get'
}).
success(function(data, status, headers, config) {
$scope.tabs = data;
}).
error(function(data, status, headers, config) {
window.location = '/auth/login';
});
}
]);
示例服务器答案
[{
"url": "settings.users",
"title": "Users"
}, {
"url": "settings.roles",
"title": "Roles"
}]
我的settings.html
<div class="container">
<ul class="nav nav-tabs nav-justified">
<li ng-repeat="tab in tabs" ng-class="{active: $first}">
<a href="{{tab.url}}">{{tab.title}}</a>
</li>
</ul>
</div>
如何加载$http
SettingsController
端的第一个标签页,同时将其连接到相应的控制器?以及如何在不同状态下切换活动标签?
答案 0 :(得分:0)
不知道是否可以动态定义路线,但您可以通过以下方式实现目标。
此外,如果用户在尝试加载页面时具有页面权限,则值得在服务器端进行检查。因为他可以查看代码并尝试绕过导航来访问它。