angular8 — 父子组件之前的通信
1. 子组件传值给父组件
子组件:invest-profile-left.component.ts(子组件的html页面不需要其他操作)
import { Component, OnInit, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'kt-invest-profile-left',
templateUrl: './invest-profile-left.component.html',
styleUrls: ['./invest-profile-left.component.scss']
})
export class InvestProfileLeftComponent implements OnInit {
@Output() taskData = https://www.it610.com/article/new EventEmitter;
constructor() {
}ngOnInit() {
this.taskData.emit("我是在子组件中获取到的值,需要传给父组件");
}
}
父组件:investment-profile.component.html
父组件:investment-profile.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'kt-investment-profile',
templateUrl: './investment-profile.component.html',
styleUrls: ['./investment-profile.component.scss']
})
export class InvestmentProfileComponent implements OnInit {
public taskData;
constructor() {
}
ngOnInit() {
}
public getTaskData($event) {
this.taskData = https://www.it610.com/article/$event;
// 获取到子组件传过来的值,并把值存入变量taskData
}
}
到此已完成子组件给父组件传值
2. 父组件传值给子组件(我就把父组件刚刚接收到的值传给其它子组件好了)
父组件:investment-profile.component.html
【angular8 — 父子组件之前的通信】子组件:invest-profile-tasks.component.ts
//Angular
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'kt-invest-profile-tasks',
templateUrl: './invest-profile-tasks.component.html',
styleUrls: ['./invest-profile-tasks.component.scss']
})
export class InvestProfileTasksComponent implements OnInit {
@Input() taskData;
// 接收父组件传过来的值
constructor() {
}
ngOnInit() {}
}
推荐阅读
- 急于表达——往往欲速则不达
- 慢慢的美丽
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量
- 2019-02-13——今天谈梦想()
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- Ⅴ爱阅读,亲子互动——打卡第178天
- 低头思故乡——只是因为睡不着
- 取名——兰
- 每日一话(49)——一位清华教授在朋友圈给大学生的9条建议
- 广角叙述|广角叙述 展众生群像——试析鲁迅《示众》的展示艺术