gpt4 book ai didi

javascript - 在 Angular 中使用 setInterval 调用函数时无法读取未定义的属性

转载 作者:搜寻专家 更新时间:2023-10-30 21:25:26 25 4
gpt4 key购买 nike

<分区>

当调用一个函数时没有任何问题,但是当在 setInterval 中调用它时,所以每秒都调用它,它给我错误:无法读取服务上未定义的属性!

 constructor(private route: ActivatedRoute,private 
conversationService:ConversationService) {
}


ngOnInit() {
this.sender = this.route.snapshot.paramMap.get("username");
this.receiver = sessionStorage.getItem("username");
setInterval(
function()
{
this.conversationService.
getTheConversation(this.receiver,this.sender).subscribe(
data=>this.result=data)
},1000);
}

错误:错误类型错误:无法读取未定义的属性“getTheConversation”

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