我尝试在 MongoDB 缝合函数中调用 collection.bulkWrite(),但出现错误 - “bulkWrite 不是函数”。是否可以在 MongoDB 缝合函数中使用 bulkWrite()?
这是我的缝合功能——我让它“作为系统运行”:
exports = function(arg){
var collection = context.services.get("mongodb-atlas").db("testDATABASE").collection("allSkuTable");
return collection.bulkWrite(some_paramets_inside);
};
如果可能的话,调用 bulkWrite() 的正确方法是什么?