使用猫鼬时未定义Graphql错误newUser
Posted
技术标签:
【中文标题】使用猫鼬时未定义Graphql错误newUser【英文标题】:Graphql error newUser is not defined while using mongoose 【发布时间】:2021-08-23 19:13:27 【问题描述】:我是 GraphQL 的新手。我试图创建一个注册函数,只有当邀请代码与 mycode 变量匹配时,用户才会保存在 mongo 中。
User.find(mycode:invitationcode
).then(code=>
if(code)
console.log("yes")
const newUser=new User(
fullName,
email,
username,
password,
invitationcode,
mycode
).save();
else
console.log(
"no"
)
)
VSCode 在声明悬停时显示此内容-'newUser' 但从不读取其值。
请帮忙
【问题讨论】:
【参考方案1】:User.find(mycode:invitationcode
).then(async code=>
if(code)
console.log("yes")
const newUser= await new User(
fullName,
email,
username,
password,
invitationcode,
mycode
).save();
else
console.log(
"no"
)
)
【讨论】:
以上是关于使用猫鼬时未定义Graphql错误newUser的主要内容,如果未能解决你的问题,请参考以下文章