今天在使用ngx-translate做多语言的时候遇到了一个问题,需要在登录页面点击按钮,然后调用父组件中的一个方法。
一开始想到了@input和@output,然而由于并不是单纯的父子组件关系,而是包含路由的父子组件关系,所以并不能使用@input方法和@output方法。
然后去搜索一下,发现stackoverflow上有答案,用的是service来进行传参,发现很好用,所以和大家分享一下。
首先,创建一个service.
shared-service.ts
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);
}
}
然后把这个service分别注入父组件和子组件所属的module中,记得要放在providers里面。
然后把service再引入到父子组件各自的component里面。
子组件通过 方法传递参数:
child.component.ts
import { Component} from \'@angular/core\';
@Component({
templateUrl: \'child.html\',
styleUrls: [\'child.scss\']
})
export class ChildComponent {
constructor(
private _sharedService: SharedService
) { }
(){
this._sharedService.emitChange(\'Data from child\');
}
}
父组件通过服务接收参数:
parent.component.ts
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);
});
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
继续阅读与本文标签相同的文章
上一篇 :
直播世界杯:优酷的闪电战,阿里的大练兵
下一篇 :
一文揭秘!自底向上构建知识图谱全过程
-
简易区分物联网和互联网
2026-05-19栏目: 教程
-
二维码如此普及,为何三维码没办法普及
2026-05-19栏目: 教程
-
山东有效专利量前十企业和前十大专院校名单来啦,第一名你想到了吗
2026-05-19栏目: 教程
-
两种ASO应用优化的核心操作方法
2026-05-19栏目: 教程
-
第126届广交会15日开幕,新产品新技术受青睐
2026-05-19栏目: 教程
