gpt4 book ai didi

javascript - TS7006 : Parameter 'event' implicitly has an 'any' type

转载 作者:行者123 更新时间:2023-12-05 00:28:14 25 4
gpt4 key购买 nike

在 Angular ,
这是脚本

<button (click)="onClick($event)"> Greet </button>
<button (click)="greeting='welcome' "> Greet </button>
{{greeting}}
这是事件逻辑
public greeting =""; 
onClick(event) {
console.log(event);
this.greeting ='welcome';
}

最佳答案

您可以使用的一些替代方案:

onClick(event: Event) {}

onClick(event: MouseEvent) {}
此外,如果您没有将参数事件用于任何事情,则可以将其删除。
onClick() { ... }

关于javascript - TS7006 : Parameter 'event' implicitly has an 'any' type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70526259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com