我正在尝试实现一个基于角色的访问控制系统,其中允许的资源将在登录后从服务器加载。我可以设法使用原始JavaScript代码进行检查。
angular.module('app').directive('accessControl',
[
'AuthService', function (authService) {
return {
restrict: 'A',
scope: "=",
link: function (scope, element, attrs) {
scope.canShow = function(resource) {
var allowedResources = authService.accountInfo.resources;
return allowedResources.indexOf(resource) !== -1;
}
}
}
}
]);
但由于我的整个应用程序都在TypeScript中,所以我一直在尝试用纯TypeScript制作指令,但不幸的是我无法这样做。这是我的TS代码。
export class AccessControl implements ng.IDirective {
public authService: App.AuthService;
public link: (scope: ng.IScope, element: ng.IAugmentedJQuery, attrs: ng.IAttributes) => void;
constructor(authService: App.AuthService) {
this.authService = authService;
console.log('authservice: ', authService);
AccessControl.prototype.link = (scope: ng.IScope, element: ng.IAugmentedJQuery, attrs: ng.IAttributes) => {
scope["canShow"] = function (resource: string) {
// some logic
console.log('can show' + resource);
return true;
};
};
}
public static factory(): ng.IDirectiveFactory {
var directive = (authService: App.AuthService) => {
return new AccessControl(authService);
};
directive['$inject'] = ['AuthService'];
return directive;
}
restrict = "A";
scope: "=";
}
angular.module('app').directive('accessControl', AccessControl.factory());
永远不会调用链接函数。 任何帮助或指针将受到高度赞赏。
答案 0 :(得分:0)
我们总是将link
声明为该类的公共函数。除非使用隔离范围(在这种情况下,它将是一个具有特定传递的每个范围变量或方法的对象),否则您不需要指令类上的公共scope
变量。另外,您可以直接在$inject
上设置directive
,而不使用您正在使用的括号属性表示法。以下是我们如何使用TypeScript创建指令:
namespace app.directives {
export class AccessControl implements ng.IDirective {
public restrict = "A";
constructor(private authService: App.AuthService) {
console.log("authservice: ", this.authService);
}
public link(scope: ng.IScope,
element: ng.IAugmentedJQuery,
attrs: ng.IAttributes) {
console.log("in link function of directive", scope);
}
public static factory(): ng.IDirectiveFactory {
var directive = (authService: App.AuthService) => {
return new AccessControl(authService);
};
directive.$inject = ["AuthService"];
return directive;
}
}
angular.module("app")
.directive("accessControl", AccessControl.factory());
}