使用相同的函数将许多不同的值从子组件传递到父组件

我有一个在父组件中使用的复选框组件。当值发生变化时,我使用 an@Output()让父组件知道值已更新。

我的代码正在运行,但我在我的项目中多次使用复选框组件,我不想每次创建新函数来设置新的变量值时都创建它。

这是我的代码的链接

我的问题是:我怎样才能做得更好?为了防止onRoleChangeCheckboxX()每次我有一个新的复选框时都创建一个新功能。我的 stackblitz 只是一个例子,两个额外的功能不会打扰我,但是当我必须创建 50 个复选框的情况下呢?


蛊毒传说
浏览 89回答 3
3回答

繁星点点滴滴

这是我认为您想要的堆栈闪电战?您需要为您的复选框创建一个数组&nbsp; checkboxes = [&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; name: 'First checkbox',&nbsp; &nbsp; &nbsp; value: false&nbsp; &nbsp; },&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; name: 'Second checkbox',&nbsp; &nbsp; &nbsp; value: false&nbsp; &nbsp; },&nbsp; ]使用 *ngFor 获得一个通用 html,当您向数组添加另一个复选框时,您不需要编辑该 html<app-checkbox *ngFor="let box of checkboxes; let i = index"&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [checkboxName]="box.name"&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [checkboxData]="box.value"&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (toggle)="onRoleChangeCheckbox($event, i)"></app-checkbox>然后您的onRoleChangeCheckbox()函数可以变得通用并使用索引更新您的数组&nbsp; onRoleChangeCheckbox(ev, index) {&nbsp; &nbsp; this.checkboxes[index].value = ev;&nbsp; }这种方法应该可以减少很多重复的代码,因为您只需要向数组添加新的复选框。

慕少森

可能这不是更好的方法,但它可能在某些情况下有效,在所有情况下都会有一个发射处理程序。&nbsp; import { Component, OnInit, Input, Output, EventEmitter } from "@angular/core";&nbsp;&nbsp; &nbsp; @Component({&nbsp; selector: "app-checkbox",&nbsp; templateUrl: "./checkbox.component.html",&nbsp; styleUrls: ["./checkbox.component.css"]})export class CheckboxComponent implements OnInit {&nbsp; @Input() checkboxName;&nbsp; @Input() checkboxData:any;&nbsp;&nbsp; @Input() checkBoxLinkedProp:any; // added another property it is the name of the property in the parent component you are updating&nbsp;&nbsp;&nbsp;&nbsp; @Output() toggle: EventEmitter<any> = new EventEmitter<any>(); // emit a object instead of bool&nbsp; constructor() {}&nbsp; ngOnInit() {}&nbsp; onToggle() {&nbsp; &nbsp; const checkedOption = this.checkboxData;&nbsp; &nbsp; this.toggle.emit({checked:checkedOption , checkBoxLinkedProp: this.checkBoxLinkedProp });&nbsp; }}app.component.html [checkBoxLinkedProp] = "'checkbox1Value'" - 我将道具名称作为字符串传递给子复选框组件。并在切换时调用一个方法(toggle)="onRoleChangeCheckbox($event)"this.toggle.emit将发射带有我们传递的字符串道具的对象<app-checkbox [checkboxName]='checkbox1' [checkboxData]='checkbox1Value'&nbsp;&nbsp; [checkBoxLinkedProp] = "'checkbox1Value'"&nbsp;(toggle)="onRoleChangeCheckbox($event)"></app-checkbox><app-checkbox [checkboxName]='checkbox2' [checkboxData]='checkbox2Value'&nbsp; (toggle)="onRoleChangeCheckbox($event)"[checkBoxLinkedProp] = "'checkbox2Value'"></app-checkbox>app.component.ts onRoleChangeCheckbox({checkBoxLinkedProp , checked})这个方法将把我们作为字符串从发射事件传递过来的属性名称设置为类的状态。import { Component, VERSION } from '@angular/core';@Component({&nbsp; selector: 'my-app',&nbsp; templateUrl: './app.component.html',&nbsp; styleUrls: [ './app.component.css' ]})export class AppComponent&nbsp; {&nbsp; checkbox1 = 'First checkbox';&nbsp; checkbox1Value = false;&nbsp; checkbox2 = 'Second checkbox';&nbsp; checkbox2Value = false;&nbsp; onRoleChangeCheckbox({checkBoxLinkedProp , checked}) {&nbsp; &nbsp; this[checkBoxLinkedProp] = checked; // property name that passed to child , is received in this emit event and as this will be set&nbsp; &nbsp; console.log(this.checkbox1Value , checkBoxLinkedProp); // tested value for 1st checkbox&nbsp; }}

胡说叔叔

我很难准确地说出你想要什么,但如果你使用 eventEmitter & Output,你可以用一个单一的发射语句发射一个复杂的 json obj,并向父级发送尽可能多的数据:@Output() messageEvent = new EventEmitter<any>();var obj = { check1: true, check2: false, check3: false }this. messageEvent.emit(obj);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript