gpt4 book ai didi

node.js - 相当于 Node.js 中的 mongo shell db.collection.runCommand()

转载 作者:太空宇宙 更新时间:2023-11-04 01:11:25 24 4
gpt4 key购买 nike

我想使用 MongoDB 2.4 中提供的全文搜索。可以通过 runCommand 函数进行文本搜索,例如db.collection.runCommand(“text”, { search:“keywords”})。所以,我想知道 mongojs 或 node-mongodb-native 模块中是否有与 runCommand() 等效的函数。

我知道这个问题以前已经被触及过,但从未得到充分的回答。提前致谢。

最佳答案

我发现它是等价的:

collection.find({ $text: { $search : "your search words" }})
.toArray(function(err,results) {
// ..callback stuff..
});

关于node.js - 相当于 Node.js 中的 mongo shell db.collection.runCommand(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17002711/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com