在 mongo shell 我可以做到这一点
db.collection.runCommand( 'text', { search: 'query' } )
我怎样才能用 mongodb-native 和 node.js 得到这个?
我试图做这样的事情
db.executeDbCommand( 'text', { search:'query' }, function(e, o) {
if (e) {
callback(e)
}
else callback(o)
});
它失败了