gpt4 book ai didi

javascript - 类型错误 : Cannot read property 'then' of undefined with find() monk

转载 作者:行者123 更新时间:2023-11-30 19:50:59 26 4
gpt4 key购买 nike

我正在和 monk 一起工作,当我使用一个函数在数据库中查找用户时,我希望他们根据是否找到它来返回一个 bool 值。这是代码:

功能:

function userExist() {
users
.find()
.then(result => {
console.log(result)
if(result.length != 0) {
return true;
} else {
return false;
}
})

调用函数(这里是错误):

userExist().then(received => {
console.log(received);
})

最佳答案

您应该在 userExist 函数中返回您的 promise 。否则,您只有一个函数,而不是调用 then() 的 promise 。

function userExist() {
return users
.find()
.then(result => {
console.log(result)
if(result.length != 0) {
return true;
} else {
return false;
}
})

关于javascript - 类型错误 : Cannot read property 'then' of undefined with find() monk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54471144/

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