APIs used Simple ExampleRender subcomponents in a list, click on a subcomponent to notify the parent component to perform an operation person.tsexport interface Person { name: string; age: number; sex: string; } Parent Componentimport { Component, OnInit } from '@angular/core'; import { Person } from './person'; @Component({ selector: 'app-comp-parent', template: ` <app-comp-child *ngFor="let person of personList" (itemClick)="onItemClick($event)" [data]="person" ></app-comp-child> `, }) export class CompParentComponent implements OnInit { personList: Person[] = [ { name: '张三', age: 21, sex: '男' }, { name: 'Li Si', age: 25, sex: 'Male' }, { name: '李莉', age: 20, sex: '女' }, ]; constructor(){ } ngOnInit(): void { } onItemClick(item: Person){ console.log('click-person: ', item); } } Subcomponentsimport { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { Person } from './person'; @Component({ selector: 'app-comp-child', template: ` <div (click)="itemClick.emit(data)"> Name: {{ data.name }} Age: {{ data.age }} Sex: {{ data.sex }} </div> `, }) export class CompChildComponent implements OnInit { @Input() data!: Person; @Output() itemClick = new EventEmitter(); constructor(){ } ngOnInit(): void { } } Effect SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Pure CSS code to achieve drag effect
>>: A detailed introduction to Linux memory management and addressing
This article mainly introduces how to call desktop...
1. To develop web responsively, the page must ada...
In actual Web development, inserting images, incl...
Table of contents transition hook function Custom...
Table of contents Immediately execute function fo...
background go-fastdfs is a distributed file syste...
This article mainly introduces how to specify par...
Because frameset and body are on the same level, y...
Preface: I recently started to study the construc...
The following three methods are commonly used to d...
Table of contents question Reproduction Implicit ...
Docker only maps ports to IPv6 but not to IPv4 St...
Table of contents What is an index The difference...
Table of contents dva Using dva Implementing DVA ...
Preface In MySQL, cross-database queries are main...