gpt4 book ai didi

javascript - 无法读取未定义的属性 'lockDatabase' (this)

转载 作者:行者123 更新时间:2023-12-03 04:17:55 24 4
gpt4 key购买 nike

我收到此错误是因为我猜“this”超出了范围,但我找不到修复它的方法。我尝试使用粗箭头,然后该函数确实运行了。但接下来的问题是我没有必须使用的回调值?这是我的代码:

this.checkIfDatabaseIsLocked(function(res) {
//If true database is locked
console.log("result checkIfDatabaseIsLocked: " + res);
if (res) {
return;
}
//LockDatabase
this.lockDatabase().then(
result => {

有什么想法吗?提前致谢!!!

最佳答案

在此处使用箭头函数以确保 this 保持您期望的值:

this.checkIfDatabaseIsLocked(res => {
//If true database is locked
console.log("result checkIfDatabaseIsLocked: " + res);
if (res) {
return;
}
//LockDatabase
this.lockDatabase().then(
result => {
... and so on

关于javascript - 无法读取未定义的属性 'lockDatabase' (this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44066676/

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