如何使用TypeScript将多个参数传递给Angular中的@Directives(@Components)?

IT技术 javascript angular typescript angular6
2021-02-26 15:10:46

由于我创建了@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个回答

文档

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

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 的指令selectableselectable我们有两个@Input()fwith namefirstswith name second我们已将这两个应用li到名称为[first]属性上[second]我们的指令会在那个li元素上找到这些属性,这些属性是用@Input()装饰器为他设置的所以selectable, [first]and[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>
@Shree 查看编辑后的 ​​anwser。li你以同样的方式传递参数
2021-04-25 15:10:46
您将使用 @Input 装饰器给出它的参数
2021-04-30 15:10:46
@ChrisTarasovs 当您使用时[defaultColor]="violet",它会尝试执行正确的部分并找到名称为紫罗兰的属性,没有[]括号,它将正确的部分用作字符串
2021-04-30 15:10:46
但是如果我有多个 attr 指令怎么办?
2021-05-03 15:10:46
但是我应该在父组件中写什么?
2021-05-15 15:10:46

要传递许多选项,您可以在一行中将对象传递给带有自定义数据的 @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
}
@MartinJH 值得一提的是,此解决方案在使用更改检测策略时效果不佳OnPush如果您想使用该策略,最好避免将对象用作@Input()。
2021-04-21 15:10:46
@enf0rcer 当然,您仍然可以将此方法与 OnPush 一起使用,您只需要将新对象推送到指令。因此,在模板中嵌入对象字面量是行不通的 - 您需要通过组件上的 observable 推送它。
2021-04-30 15:10:46
这就是我一直在寻找的。这样我就可以只使用一个指令绑定 pr。html 元素。谢谢一堆@Dag!
2021-05-08 15:10:46

另一个巧妙的选择是将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>`

简单、整洁、强大。

我没有意识到指令可以用作元素。惊人的。
2021-05-02 15:10:46
谢谢,这也是最简单的方法。
2021-05-06 15:10:46

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

selector: '[selectorHere]',

@Input() options: any = {};

输入.html

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

来自 TS 文件的数组

selectorArray= {
  align: 'left',
  prefix: '$',
  thousands: ',',
  decimal: '.',
  precision: 2
};