我正在嘗試在角es6中開發應用程序。我有一個directve問題。 這裏是我的代碼angularJS ES6指令
export default class RoleDirective {
constructor() {
this.template="";
this.restrict = 'A';
this.scope = {
role :"@rolePermission"
};
this.controller = RoleDirectiveController;
this.controllerAs = 'ctrl';
this.bindToController = true;
}
// Directive compile function
compile(element,attrs,ctrl) {
console.log("df",this)
}
// Directive link function
link(scope,element,attrs,ctrl) {
console.log("dsf",ctrl.role)
}
}
// Directive's controller
class RoleDirectiveController {
constructor() {
console.log(this.role)
//console.log("role", commonService.userModule().getUserPermission("change_corsmodel"));
//$($element[0]).css('visibility', 'hidden');
}
}
export default angular
.module('common.directive', [])
.directive('rolePermission',[() => new RoleDirective()]);
的問題是我不能讓裏面的構造函數的作用值。 這裏是我的HTML實現
<a ui-sref="event" class="button text-uppercase button-md" role-permission="dfsd" detail="sdfdsfsfdssd">Create event</a>
如果我安慰這是會得到控制對象。但是在使用this.role時它不會得到任何結果。
你也可以參考[這個答案](http://stackoverflow.com/a/41524591/2435473)。 –
使用ES5你會遇到完全相同的問題。對於這個指令來說,首先要有一個控制器和一個獨立的範圍是沒有意義的。 – zeroflagL