1. Middleman ModelExcept for component 1, each component in this component tree has a parent component that can play the role of a middleman. The top-level middleman is component 1, which enables components 2, 3, and 6 to communicate with each other. By analogy, component 2 is the middleman between component 4 and component 5. Component 3 is the middleman between components 7 and 8. A middleman is responsible for receiving data from one component and passing it to another. 2. ExamplesTaking the stock quote component as an example, suppose a trader is monitoring the price of the quote component. When the stock price reaches a certain value, the trader will click a buy button to buy the stock. Problem: The quote component does not know how to place an order to buy a stock, it is only used to monitor the stock price. Therefore, the quotation component should notify its middleman [that is, the APP component] at this time to tell it that the trader wants to buy a certain stock at a certain price. The middleman should know which component can complete the order and pass the stock code and current price to this component. 1. Add a buy button to the quotation componentAdd a button to the quote component. When the stock reaches a certain price, the trader can click the button to buy the stock at this price. <div> I am a quotation component</div> <div> The stock code is {{stockCode}} and the stock price is {{price | number:"2.0-2"}} </div> <div> <input type="button" value="Buy Now" (click)="$($event)"> </div> @Output() buy:EventEmitter<PriceQuote>=new EventEmitter(); buyStock(event){ this.buy.emit(new PriceQuote(this.stockCode,this.price)); } 2. Parent component receives and processes eventsListen to the buy event in the parent component and obtain the current purchase information <app-price-quote (buy)="buyHandler($event)" ></app-price-quote> buyHandler(event:PriceQuote){ this.priceQuote=event; } The quotation information can be passed to the order component through attribute binding. <app-order [priceQuote]="priceQuote"></app-order> 3. Order componentThe order component has an input property to receive the quote and display it on the page. @Input() priceQuote:PriceQuote; <div> I am placing an order component</div> <div> Buy 100 lots of {{priceQuote.stockCode}} stock at {{priceQuote.lastPrice | number:"2.2-2"}} </div> 4. Operation resultsThe price of the quotation component is constantly changing. Clicking Buy Now will buy the current stock at the current price. It will be updated whenever you click the button. Benefits: There is no code related to the order component in the quotation component, and the quotation component does not even know the existence of the order component. The quote component simply emits the stock symbol and stock price at the time of purchase. Likewise, there is nothing in the order component related to the quote component. The quotation component and the order component work together to complete the function of placing stock orders without knowing each other. High component reuse. 3. Using a service as a middlemanIf two components do not have a common parent component and are not even displayed together, how can they communicate? For example, components 4 and 6 in the figure at the beginning of the article. In this case, an injectable service should be used as a middleman. Whenever a component is created, the middleman service is injected. Components can subscribe to the stream of events emitted by a service. Before developing an application with Angular, you should think deeply and design which reusable components to write, such as order components, quotation components, and which components and services act as middlemen for which components. What are the inputs of the components, what are the outputs, and how do the components communicate with each other. Then start writing code. The above is a detailed explanation of the middleman mode of Angular components. For more information about Angular components, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed analysis of the parameter file my.cnf of MySQL in Ubuntu
>>: Complete steps to build a Laravel development environment using Docker
Table of contents 1. What is lazy loading? 2. Imp...
1 The select tag must be closed <select><...
Preface The mysql module (project address is http...
Effect Need environment vue elementUI Drag and dr...
Preface I was recently reading about MySQL indexe...
A web designer's head must be filled with a lo...
This article records the installation and configu...
There is such a scenario: a circular container, t...
Table of contents Written in front What exactly i...
I have been using MySQL recently. The article mys...
A few days ago, the library said that the server ...
Table of contents 1. Docker Image 2. Create an in...
Preface: MySQL master-slave architecture should b...
http://www.cppcns.com/shujuku/mysql/283231.html Y...
Initially, multiple columns have different conten...