gpt4 book ai didi

angular - 如何在音频对象的onerror事件中访问全局变量

转载 作者:行者123 更新时间:2023-12-02 22:37:25 25 4
gpt4 key购买 nike

我想从audio.onerror函数访问isDisabled变量,并想重置isDisabled的值,但无法设置它。

public isDisabled: boolean = false;
private verifyPrompt(url: string): boolean{
let audio = new Audio(this.promptMessageUrl);
this.isDisabled =
audio.load;
audio.onerror = function(e){
this.isDisabled = true;
}
}

最佳答案

删除function关键字,并使用箭头函数符号()=>

audio.onerror = (e) => {
this.isDisabled = true;
}

关于angular - 如何在音频对象的onerror事件中访问全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46631891/

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