0
我想通過使用executeDbcommand方法在mongodb上運行文本搜索查詢。但是,我得到「對象沒有方法executeDbcommand」錯誤。這裏是代碼:nodejs mongodb executeDbcommand錯誤
var db = require('mongodb').Db;
db.connect("mongodb://localhost:27017/test",function(error,client){
client.executeDbcommand({text: 'Data', search:{'date': { '$gt' : last },"post": rgxp} }, function(e,o){
if(e) { console.log('error:') ; console.log(e); }
else
console.log(o);