嗨,我有一个名为“ ConfirmSave”的组件。在显示此组件之前我有一定的条件
private parentUrl: string;
constructor(private activatedRoute: ActivatedRoute, private yourService: YourService) {
this.activatedRoute.parent.url.subscribe(path => {
this.parentUrl = `/${path.join('/')}`;
});
}
goToResult() {
this.yourService.goTo(this.parentUrl);
}
在这个组件中,我有这个
{FormStatus.statusMode === "Success" && (
<ConfirmSave FormStatus={FormStatus} />
)}
我的问题是,即使链接尚未单击激活的“ onClick”,它也在我的日志中显示“测试”
答案 0 :(得分:1)
哦,我正在调用函数而不是触发器
() => { this.props.removeTaskFunction(todo)