私は typescript でかなり新しいので、 typescriptクラスを使用して記述されたAngular.jsディレクティブを作成しようとしています。 $watch関数がデータを受信したときに呼び出されるディレクティブリンク関数で外部角度サービスを使用したいと考えています。しかし、どのように試しても、このキーワードは常にグローバル ウィンドウにリンクしており、挿入されたサービスにアクセスできません。手伝ってください。これが私の指示です:
module Portal.MainMenu {
class MenuScrollDirective implements ng.IDirective {
static $inject = ["$timeout", "$window"];
constructor(private $timeout: ng.ITimeoutService, private $window: ng.IWindowService) { }
restrict = "EA";
scope = {
expanded: "=",
tplChanged: "=",
fullView: "="
};
link = ($scope: ng.IScope, el: IJQSlimScroll) => {
var settings = {
position: 'left',
size: '5px'
};
init();
function init() {
$scope.$watch('expanded',(cur, prev) => {
cur && adjustScroll();
});
}
function adjustScroll() {
var winH = this.$window.innerHeight //this - refers to Window here
//but I need to access service
this.$timeout(() => {
//need access to el here
}); //same here 'this' is global
}
}
angular.module('portal.mainMenu')
.directive('menuScroll', ($timeout: ng.ITimeoutService, $window: ng.IWindowService) => {
return new MenuScrollDirective($timeout, $window);
});
}