我想使用 collmod 命令修改我的集合的验证。但是当我调用 runCommand() 函数时,它给了我错误 runCommand 不是函数。我正在尝试使用 nodejs 驱动程序进行连接
const uri = "mongodb://localhost:27017";
const client = new MongoClient(uri);
client.db('E-commerce').runCommand({collmod:'category',categorySchema})
我想使用 collmod 命令修改我的集合的验证。但是当我调用 runCommand() 函数时,它给了我错误 runCommand 不是函数。我正在尝试使用 nodejs 驱动程序进行连接
const uri = "mongodb://localhost:27017";
const client = new MongoClient(uri);
client.db('E-commerce').runCommand({collmod:'category',categorySchema})