Angular父子组件通过服务传参的示例方法
时间:2022-06-25 15:30:52 编辑:袖梨 来源:一聚教程网
今天在使用ngx-translate做多语言的时候遇到了一个问题,需要在登录页面点击按钮,然后调用父组件中的一个方法。
一开始想到了@input和@output,然而由于并不是单纯的父子组件关系,而是包含路由的父子组件关系,所以并不能使用@input方法和@output方法。
然后去搜索一下,发现stackoverflow上有答案,用的是service来进行传参,发现很好用,所以和大家分享一下。
首先,创建一个service.
shared-service.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 | import { Injectable } from '@angular/core' ; import { Subject } from 'rxjs/Subject' ; @Injectable() export class SharedService { // Observable string sources private emitChangeSource = new Subject<any>(); // Observable string streams changeEmitted$ = this .emitChangeSource.asObservable(); // Service message commands emitChange(change: any) { this .emitChangeSource.next(change); } }</any> |
然后把这个service分别注入父组件和子组件所属的module中,记得要放在providers里面。
然后把service再引入到父子组件各自的component里面。
子组件通过onClick方法传递参数:
child.component.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 | import { Component} from '@angular/core' ; @Component({ templateUrl: 'child.html' , }) export class ChildComponent { constructor( private _sharedService: SharedService ) { } onClick(){ this ._sharedService.emitChange( 'Data from child' ); } } |
父组件通过服务接收参数:
parent.component.ts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { Component} from '@angular/core' ; @Component({ templateUrl: 'parent.html' , styleUrls: [ 'parent.scss' ] }) export class ParentComponent { constructor( private _sharedService: SharedService ) { _sharedService.changeEmitted$.subscribe( text => { console.log(text); }); } } |
相关文章
- 《弓箭传说2》新手玩法介绍 01-16
- 《地下城与勇士:起源》断桥烟雨多买多送活动内容一览 01-16
- 《差不多高手》醉拳龙技能特点分享 01-16
- 《鬼谷八荒》毕方尾羽解除限制道具推荐 01-16
- 《地下城与勇士:起源》阿拉德首次迎新春活动内容一览 01-16
- 《差不多高手》情圣技能特点分享 01-16