猫鼬不是从变量创建集合名称

时间:2020-09-20 20:41:57

标签: node.js mongodb express database-schema mongoose-schema

schema.js

****************************************************************
var nameOfCategory = "hello";
ecomm.createProductCollection = async (categoryName) =>{
  nameOfCategory = categoryName;
}

const productSchema = new mongoose.Schema({
  productName:{
    type: String,
    require: true
  }
},
// { collection: nameOfCategory }
)
ecomm.productModel = new mongoose.model(nameOfCategory, productSchema, nameOfCategory)

*******************************************************************************************
controller.js

await ecomm.createProductCollection("someDynamicName")
await ecomm.productModel.create(product);

-----------------------------------------------------------------------

预期结果:创建了名称为“ someDynamicName”的集合。 实际结果:创建的集合名称为“ hello”。

但是在控制台中打印时,nameOfCategory显示“ someDynamicName”

1 个答案:

答案 0 :(得分:0)

当在函数内部创建productSchema时,此方法有效。 但是仍然找不到有关代码无法正常工作的原因。

schema.js

****************************************************************

ecomm.createProductCollection = async (categoryName) =>{
  nameOfCategory = categoryName;
const productSchema = new mongoose.Schema({
  productName:{
    type: String,
    require: true
  }
},
// { collection: nameOfCategory }
)
ecomm.productModel = new mongoose.model(nameOfCategory, productSchema, nameOfCategory)
}