gpt4 book ai didi

javascript - 我应该用哪种方式编写新的 Mongoose 模式?

转载 作者:行者123 更新时间:2023-12-03 00:56:10 24 4
gpt4 key购买 nike

我想知道这两段代码之间是否有区别,或者一种方法是否比另一种更好?

或者有什么不同吗?

  const Schema = mongoose.Schema;
const fruitSchema = new Schema({});
const veggieSchema = new Schema({});

or

const fruitSchema = mongoose.Schema({});
const veggieSchema = mongoose.Schema({});

最佳答案

它们是等价的。 mongoose.Schema 是一个构造函数,但当将其作为普通函数调用时,它将使用 new 在内部创建架构。查看实现here .

关于javascript - 我应该用哪种方式编写新的 Mongoose 模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52827982/

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