如何在nodejs中添加findone进行名称验证来自mongodb的详细信息[已关闭]

am46iovg  于 2023-08-04  发布在  Go
关注(0)|答案(1)|浏览(63)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答这个问题。
20小时前关闭。
Improve this question
你们中的任何人都可以解决这个问题的重复名称,以避免和执行 Postman API的代码如下所附

zvokhttg

zvokhttg1#

我不确定我是否正确理解了你的问题。但是如果你想避免在EmployeeModel中使用双重名称,你可以像在employeemodel.js中使用unique: true一样使用Unique Indexes

const employeeSchema = new Schema({
  name: {
    type: String,
    required: true,
    unique: true
  }
})

字符串
await employeeModelData.save()上的employeeController.js中,用现有名称保存新模型时,您将得到一个错误,这将被try-catch捕获。
如果你需要更多的信息和例子,你可以看看:Understanding unique in Mongoose

相关问题