使用猫鼬时未定义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的主要内容,如果未能解决你的问题,请参考以下文章

尝试加载猫鼬时无法加载c ++ bson扩展[重复]

连接到猫鼬时的弃用警告

如何将mongodb集合保存在数组中?在 expressJS 中使用猫鼬时?

尝试安装猫鼬时出错

当填充涉及猫鼬时如何返回文档内容数组

推入数组猫鼬时对象对象而不是字符串