基本上我的想法是通过使用JavaScript(而不是Node.js)从MongoDB调用函数来获取文档
var mongo = require('mongodb');
mongo.MongoClient.connect('mongodb://localhost:27017/Database',function(err,db)
{
var result = [];
result = db.eval('getContacts("_id")',function(error, result)
{
console.log("Error is:" +error);
console.log("result is:"+result);
console.log("working till here");
})
// db.close();
});
注意:getConatcts是一个DB函数,用于获取与联系人相关的详细信息。
Error: Error is:null
result is:
working till here