我已经根据文档在我的应用程序中定义了我的用户角色和权限。
https://github.com/Narzerus/angular-permission/wiki
有了这个,我可以使用 ui 指令或 ui-router 处理。
问:如何测试用户在控制器或服务中是否具有角色或权限?
(function() {
'use strict';
angular
.module('app')
.component('userDetail', component());
/** @ngInject */
function component() {
return {
restrict: 'E',
bindings: {
user: '<'
},
templateUrl: 'app/components/users/user-detail/user-detail.html',
transclude: true,
controller: Controller
}
}
/** @ngInject */
function Controller($log) {
var ctrl = this;
ctrl.$onInit = function() {
$log.log('How to test for user permission?')
// Something like...
// if(PermPermission.hasPermission('createUser')) {
// do something
// }
};
}
})();