Detailed explanation of angular parent-child component communication

Detailed explanation of angular parent-child component communication

APIs used

Input - defines acceptable properties in the child component, which can be used by the parent component to pass data to the child component

Output - The output property of the child component. This property needs to be of EventEmitter event type to notify the parent component to take corresponding actions.

EventEmitter - used in components with @Output directive to emit custom events synchronously or asynchronously and register handlers for these events by subscribing to instances.

Simple Example

Render subcomponents in a list, click on a subcomponent to notify the parent component to perform an operation

person.ts

export interface Person {
  name: string;
  age: number;
  sex: string;
}

Parent Component

import { 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);
  }
}

Subcomponents

import { 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

Rendering

Summarize

This 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:
  • Example of Angular2 parent-child component communication
  • Implementation of shared service communication between Angular 2 parent and child components
  • Angular2 parent-child component data communication example

<<:  Pure CSS code to achieve drag effect

>>:  A detailed introduction to Linux memory management and addressing

Recommend

A simple way to call desktop exe programs on a web page

This article mainly introduces how to call desktop...

Summary of WEBAPP development skills (notes for mobile website development)

1. To develop web responsively, the page must ada...

JavaScript Basics: Immediate Execution Function

Table of contents Immediately execute function fo...

Example of using Nginx reverse proxy to go-fastdfs

background go-fastdfs is a distributed file syste...

How to specify parameter variables externally in docker

This article mainly introduces how to specify par...

Put frameset in body through iframe

Because frameset and body are on the same level, y...

Use Xshell to connect to the Linux virtual machine on VMware (graphic steps)

Preface: I recently started to study the construc...

Three common ways to embed CSS in HTML documents

The following three methods are commonly used to d...

Solution to index failure caused by MySQL implicit type conversion

Table of contents question Reproduction Implicit ...

Docker FAQ

Docker only maps ports to IPv6 but not to IPv4 St...

React dva implementation code

Table of contents dva Using dva Implementing DVA ...

Example of cross-database query in MySQL

Preface In MySQL, cross-database queries are main...