Mongoose 没有从变量创建集合名称

Mongoose is not creating collection name from variable

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”

当在函数内部创建 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)
}