まず、例を探していますが、私が探している解決法はありません。AngularJS指示文(Typescript)
私はAngularJSディレクティブを持っていますが、うまくいきますが、実際はTypescriptで本当に必要です。
私の質問はjavascriptコードをtypescriptに翻訳する方法とは関係ありませんが、実際にはtypescriptに変換するとビューが機能しなくなるため、Controllerとのデータバインディングを理解したいと思います。ここで
が私のコードです:
指令
namespace Directives {
"use strict";
export interface ISidebarController {
toolbarButtons: any[];
toolbarBck: string;
toolbarBtnAction: Function;
}
class SidebarController implements ISidebarController {
static $inject = ["$location"];
constructor(private $location: ng.ILocationService) {
}
public toolbarBck = "sidebar-disabled";
public toolbarButtons = [
{
enabledImgIcon: "../resources/img/sidebar/enabled/list_icon.png",
disabledImgIcon: "../resources/img/sidebar/disabled/list_icon.png",
enabledBck: "sidebar-enabled",
disabledBck: "sidebar-disabled",
isEnabled: true,
isPressed: false
}, {
enabledImgIcon: "../resources/img/sidebar/enabled/create.png",
disabledImgIcon: "../resources/img/sidebar/disabled/create.png",
enabledBck: "sidebar-enabled",
disabledBck: "sidebar-disabled",
isEnabled: true,
isPressed: false
}
];
public toolbarBtnAction = function(btnObj, index) {
btnObj.isPressed = !btnObj.isPressed;
};
}
function sidebar(): ng.IDirective {
return {
restrict: "E",
templateUrl: "widgets/sidebar.html",
replace: true,
scope: {},
controller: SidebarController,
controllerAs: "vm",
bindToController: true
};
}
angular.module("app.confVersion").directive("sidebar", sidebar);
}
ビュー
<div class="row" ng-repeat="toolBtn in toolbarButtons" ng-click="toolbarBtnAction(toolBtn, $index)">
<div class="{{toolBtn.isPressed ? toolBtn.enabledBck : toolBtn.disabledBck}}">
<img ng-src="{{toolBtn.isPressed ? toolBtn.enabledImgIcon : toolBtn.disabledImgIcon}}">
</div>
</div>
何が正しく機能していませんか?何かエラーが出ますか? 'toolbarButtons'ではなく' vm.toolbarButtons'を呼び出すことを忘れていませんか? – iberbeu