我尝试在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()的正确方法是什么?