


How to communicate between non-parent-child components in Angular? This article will introduce to you how Angularnon-parent-child components communicate through services. I hope it will be helpful to you!
In fact, when it comes to passing values between parent and child components, we are very familiar with it and it is very common in the business implementation process.
But my implementation involves cross-level (that is, value transfer between non-parent and child components). Yes, I can pass it up layer by layer and get it in the parent component. Is there a better way to pass values from subcomponents? [Related tutorial recommendations: "angular tutorial"]
Requirement background:
has a sub-component, which can be understood as a third-level component. There is a drop-down box in this component. When a certain li tag is clicked, the corresponding selected value needs to be passed to the first-level component. At the same time, the first-level component requests the list interface with the received value, and then refreshes the data.
Initial idea:
At that time, I was thinking of saving the value selected by the user through localstorage, and then taking out the value through localstorage in the component being used. This value request interface; however, it cannot be implemented in real time. After the user selects it, it does not trigger me to obtain data in the parent component. That is, if the value in the child component changes, how can I notify the parent component.
Technical points:
Angular parent component and child component communicate through services
Parent component and its child component share The same service is used to implement two-way communication within the component family.
The scope of this service instance is limited to the parent component and its child components. Components outside this component subtree will not be able to access the service or communicate with them.
Principle
The parent component and its child components share the same service, and use this service to achieve two-way communication within the component family.
The scope of this service instance is limited to the parent component and its child components. Components outside this component subtree will not be able to access the service or communicate with them. Services are the bridge between child components and parent components, because services can be easily injected into other components, and because the Subject object can multicast (transmit) data to components that subscribe to this object, so combined with Angular Service and Subject in Rxjs can easily realize data communication between components.
Implementation:
Create a service file in the subcomponent, the code is as follows:
import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; @Injectable({ providedIn: 'root' }) export class HeaderActionService { public pageTenantMode = new Subject<string>(); // 获得一个Observable; missionConfirmed$ = this.pageTenantMode.asObservable(); constructor() {} setParams(params) { this.pageTenantMode.next(params); } }
The subcomponent data layer calls the above method and changes the value Pass it in.
this.tenantModeService.setParams()
The above service is injected where the parent component calls it. The code is as follows:
headerModeService.missionConfirmed$.subscribe( () => { this.mode = headerModeService.pageTenantMode; this.initTableData(); } );
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of A brief analysis of how to communicate between non-parent and child components in Angular. For more information, please follow other related articles on the PHP Chinese website!

本篇文章继续Angular的学习,带大家了解一下Angular中的元数据和装饰器,简单了解一下他们的用法,希望对大家有所帮助!

本篇文章带大家深入了解一下angular的状态管理器NgRx,介绍一下NgRx的使用方法,希望对大家有所帮助!

angular中怎么使用monaco-editor?下面本篇文章记录下最近的一次业务中用到的 monaco-editor 在 angular 中的使用,希望对大家有所帮助!

本篇文章给大家分享一个Angular实战,了解一下angualr 结合 ng-zorro 如何快速开发一个后台系统,希望对大家有所帮助!

Angular项目过大,怎么合理拆分它?下面本篇文章给大家介绍一下合理拆分Angular项目的方法,希望对大家有所帮助!

怎么自定义angular-datetime-picker格式?下面本篇文章聊聊自定义格式的方法,希望对大家有所帮助!

本篇文章带大家了解一下Angular中的独立组件,看看怎么在Angular中创建一个独立组件,怎么在独立组件中导入已有的模块,希望对大家有所帮助!

Angular Route中怎么提前获取数据?下面本篇文章给大家介绍一下从 Angular Route 中提前获取数据的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
