符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
组件化是Angular的核心概念,所以组件通信的使用就比较多而且很重要。
成都创新互联长期为超过千家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为郸城企业提供专业的成都网站制作、成都做网站,郸城网站改版等技术服务。拥有十载丰富建站经验和众多成功案例,为您定制开发。父子组件通信官方传送门:
https://angular.io/guide/component-interaction
https://angular.cn/guide/component-interaction
相关教程推荐:《angular教程》
关键词 Input Output EventEmitter ViewChild
1、父组件 向 子组件 传递数据
【Input】
绑定属性的方式
父组件:
子组件:
// 子组件需要使用Input接收
{{name}}
@Input() public name:string = '';
2、子组件 向 父组件 传递数据
【Output EventEmitter】
子组件:
@Output() public readonly childEmit: EventEmitter= new EventEmitter (); this.childEmit.emit(data);
父组件:
public getData(data:T): void { }
3、ViewChild 方法
因为我觉得这个方法既可以让父组件获取子组件的数据,又可以让父组件给子组件设置变量值等,所以我这里单独分了出来。
父组件:
@ViewChild('child', { static: true }) public child!: ElementRef; public print():void{ if(this.child){ // 这里得到child,可以使用child中的所有的public属性方法 this.child.print('hello2'); } }
【示例】
// 父组件 import { Component } from '@angular/core'; @Component({ selector: 'app-parent', template: `非父子组件通信` }) export class ParentComponent { public name:string = '大儿子'; @ViewChild('child', { static: true }) public child!: ElementRef ; public childClick(bool:Boolean):void{ // TODO } public print():void{ if(this.child){ this.child.print('hello2'); } } } /*****************************************************/ // 子组件 import { Component, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'app-child', template: ` {{name}}
` }) export class HeroChildComponent { @Input() public name: string; @Output() public readonly childEmit: EventEmitter= new EventEmitter (); public myClick():void{ this.childEmit.emit(true); } public print(content:string):void{ console.log(content); } }
1、Service
单例模式,其实就是一个变量,需要双向触发(发送信息 / 接收信息),及设置和获取数据都需要组件自己去处理。
service.ts
import { Component, Injectable, EventEmitter } from '@angular/core'; @Injectable() export class myService { public info: string = ''; }
组件 1 向 service 传递信息
import { Service1 } from '../../service/service1.service'; ... public constructor( public service: Service1, ) { } public changeInfo():void { this.service.info = this.service.info + '1234'; } ...
组件 2 从 service 获取信息
import { Service2 } from '../../service/service2.service'; ... public constructor( public service: Service2, ) { } public showInfo() { console.log(this.service.info); } ...
2、Subject(发布订阅)
真正的发布订阅模式,当数据改变时,订阅者也能得到响应,这里只举了BehaviorSubject的例子
// Service import { BehaviorSubject } from 'rxjs'; ... public messageSource = new BehaviorSubject四种主题Subject对比('Start'); public changeMessage(message: string): void { this.messageSource.next(message); } public getMessageSource(): Observable { return this.messageSource.asObservable(); } ///////////////////////// // 发布 ... this.messageService.changeMessage('message change'); ///////////////////////// public // 订阅 (记得根据需要选择是否取消订阅 unsubscribe) this.messageService.getMessageSource().subscribe(m => { console.log(m); })
路由传值、浏览器本地存储(LocalStorage,SessionStorage)、cookie。
更多编程相关知识,可访问:编程入门!!
网页题目:5种Angular中组件通信的方法介绍
转载来于:http://bjjierui.cn/article/cghgpi.html