我正在尝试将父组件中的函数绑定到子组件的属性中。
这就是我所拥有的
@Component({
selector: 'awesome',
templateUrl: 'awesome.html'
})
export class AwesomeComponent {
@Input() callback: Function;
ngOnInit() {
this.callback();//Error, this.callback is not a function, but contains a string value on the fuction call
}
}
这就是我使用它的方式
<awesome callback="nameOfFuncFromAnotherComponent"></awesome>
但它似乎不起作用