gpt4 book ai didi

javascript - TypeScript - setInterval 是什么类型

转载 作者:可可西里 更新时间:2023-11-01 02:31:20 27 4
gpt4 key购买 nike

如果我想为变量分配一个类型,稍后将像这样分配一个 setInterval:

this.autoSaveInterval = setInterval(function(){
if(this.car.id){
this.save();
}
else{
this.create();
}
}.bind(this), 50000);

应该为 this.autosaveInterval 变量分配什么类型?

最佳答案

晚会,但最好的类型(特别是因为类型是不透明的,我们只关心我们可以稍后将它传递给 clearInterval())可能是自动推导的类型,即。像这样的东西:

ReturnType<typeof setInterval>

关于javascript - TypeScript - setInterval 是什么类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51376589/

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