@Directive
asを作成したので、カスタム ディレクティブに複数のSelectableDirective
値を渡す方法について、少し混乱しています。私はたくさん検索しましたが、 Angular with Typescriptで適切な解決策が得られませんでした。
私のサンプルコードは次のとおりです。
親コンポーネントMCQComponent
:
import { Component, OnInit } from '@angular/core';
import { Question } from '../question/question';
import { AppService } from '../app.service/app.service';
import { SelectableDirective } from '../selectable.directive/selectable.directive';
import { ResultComponent } from '../result-component/result.component';
@Component({
selector: 'mcq-component',
template: "
.....
<div *ngIf = 'isQuestionView'>
<ul>
<li *ngFor = 'let opt of currentQuestion.options'
[selectable] = 'opt'
(selectedOption) = 'onOptionSelection($event)'>
{{opt.option}}
</li>
</ul>
.....
</div>
"
providers: [AppService],
directives: [SelectableDirective, ResultComponent]
})
export class MCQComponent implements OnInit{
private currentIndex:any = 0;
private currentQuestion:Question = new Question();
private questionList:Array<Question> = [];
....
constructor(private appService: AppService){}
....
}
これは、 optという 1 つのパラメーターを取るカスタム ディレクティブ[selectable]を持つ親コンポーネントです。
このディレクティブのコードは次のとおりです。
import { Directive, HostListener, ElementRef, Input, Output, EventEmitter } from '@angular/core'
import { Question } from '../question/question';
@Directive({
selector: '[selectable]'
})
export class SelectableDirective{
private el: HTMLElement;
@Input('selectable') option:any;
...
}
ここで、親コンポーネントからさらにパラメーターを渡したいのですが、どうすればこれを達成できますか?