86

由于我已经创建@Directiveas SelectableDirective,我有点困惑,关于如何将多个值传递给自定义指令。我进行了很多搜索,但没有在Angular中使用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){}
    ....
}

这是一个具有自定义指令[selectable]的父组件,它采用一个名为opt的参数。

这是该指令的代码:

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;

    ...
}

所以在这里我想从父组件传递更多的参数,我该如何实现呢?

4

4 回答 4

137

文档

与组件一样,您可以根据需要添加任意数量的指令属性绑定,方法是在模板中将它们串起来。

将输入属性添加到HighlightDirective被调用defaultColor

@Input() defaultColor: string;

标记

<p [myHighlight]="color" defaultColor="violet">
  Highlight me too!
</p>

Angular知道defaultColor绑定属于 ,因为您使用 装饰器HighlightDirective将其公开。@Input

无论哪种方式,@Input装饰器都会告诉 Angular 这个属性是公共的,并且可以被父组件绑定。如果没有 @Input,Angular 拒绝绑定到该属性。

对于你的例子

有很多参数

使用装饰器将属性添加到Directive类中@Input()

@Directive({
    selector: '[selectable]'
})
export class SelectableDirective{
    private el: HTMLElement;

    @Input('selectable') option:any;   
    @Input('first') f;
    @Input('second') s;

    ...
}

并在模板中将绑定属性传递给您的li元素

<li *ngFor = 'let opt of currentQuestion.options' 
    [selectable] = 'opt' 
    [first]='YourParameterHere'
    [second]='YourParameterHere'
    (selectedOption) = 'onOptionSelection($event)'>
    {{opt.option}}
</li>

li元素上,我们有一个带有 name 的指令selectable。在selectable我们有两个@Input()fwith namefirstswith name second。我们已将这两个应用到li具有 name[first]和的属性上[second]li我们的指令会在那个元素上找到这些属性,这些属性是用@Input()装饰器为他设置的。所以selectable,[first][second]将绑定到 上的每个指令li,它具有这些名称的属性。

单参数

@Directive({
    selector: '[selectable]'
})
export class SelectableDirective{
    private el: HTMLElement;

    @Input('selectable') option:any;   
    @Input('params') params;

    ...
}

标记

<li *ngFor = 'let opt of currentQuestion.options' 
    [selectable] = 'opt' 
    [params]='{firstParam: 1, seconParam: 2, thirdParam: 3}'
    (selectedOption) = 'onOptionSelection($event)'>
    {{opt.option}}
</li>
于 2016-08-09T06:26:49.730 回答
19

要传递许多选项,您可以将对象传递给 @Input 装饰器,并在一行中包含自定义数据。

在模板中

<li *ngFor = 'let opt of currentQuestion.options' 
                [selectable] = 'opt'
                [myOptions] ="{first: opt.val1, second: opt.val2}" // these are your multiple parameters
                (selectedOption) = 'onOptionSelection($event)' >
     {{opt.option}}
</li>

所以在指令类

@Directive({
  selector: '[selectable]'
})

export class SelectableDirective{
  private el: HTMLElement;
  @Input('selectable') option:any;
  @Input('myOptions') data;

  //do something with data.first
  ...
  // do something with data.second
}
于 2016-08-20T15:25:59.457 回答
9

另一个巧妙的选择是将Directive用作元素而不是属性。

@Directive({
   selector: 'app-directive'
})
export class InformativeDirective implements AfterViewInit {

    @Input()
    public first: string;

    @Input()
    public second: string;

    ngAfterViewInit(): void {
       console.log(`Values: ${this.first}, ${this.second}`);
    }
}

这个指令可以这样使用:

<app-someKindOfComponent>
    <app-directive [first]="'first 1'" [second]="'second 1'">A</app-directive>
    <app-directive [first]="'First 2'" [second]="'second 2'">B</app-directive>
    <app-directive [first]="'First 3'" [second]="'second 3'">C</app-directive>
</app-someKindOfComponent>`

简单、整洁、强大。

于 2018-08-29T10:22:32.500 回答
1

与我在指令中使用的上述解决方案类似,@Input()并且能够在指令中传递多个值数组。

selector: '[selectorHere]',

@Input() options: any = {};

输入.html

<input selectorHere [options]="selectorArray" />

来自 TS 文件的数组

selectorArray= {
  align: 'left',
  prefix: '$',
  thousands: ',',
  decimal: '.',
  precision: 2
};
于 2019-02-14T12:24:46.057 回答