在Angular 6中,组件之间的数据绑定可以通过属性绑定和事件绑定来实现。下面是一个包含代码示例的解决方法:
@Input()
装饰器来接收父组件传递的属性值。父组件模板(parent.component.html):
父组件代码(parent.component.ts):
export class ParentComponent {
parentData = 'Hello from parent component!';
}
子组件代码(child.component.ts):
import { Component, Input } from '@angular/core';
export class ChildComponent {
@Input() childData: string;
}
@Output()
装饰器和EventEmitter
来定义一个事件,并通过emit()
方法触发该事件。在父组件中,使用事件绑定来监听子组件触发的事件,并在事件处理器中获取子组件传递的数据。子组件代码(child.component.ts):
import { Component, Output, EventEmitter } from '@angular/core';
export class ChildComponent {
@Output() childEvent = new EventEmitter();
sendDataToParent() {
const data = 'Hello from child component!';
this.childEvent.emit(data);
}
}
父组件模板(parent.component.html):
父组件代码(parent.component.ts):
export class ParentComponent {
receiveDataFromChild(data: string) {
console.log(data); // 输出:Hello from child component!
}
}
通过以上两种方法,可以实现父子组件之间的数据绑定。请注意,在父组件中使用子组件之前,需要在父组件的模块中导入和声明子组件。