我正在使用MongoDB和Node.js.我想創建一個函數,我可以調用一些基本值的參數(以標識文檔),然後我希望函數返回值的字段名稱。函數從MongoDB返回字段文檔
我的文件是這樣的:
{
"name": "John Smith",
"email": "[email protected]",
"phone": "555-0125"
}
我要調用的函數是這樣的:
var phone_number = GetInfo({"name":"John Smith"}, "phone");
console.log(phone_number); // This should output "555-0125"
我如何去使用這個Node.js的驅動程序MongoDB的。文檔表明我需要採取面向回調或面向Promise的方法,但我不知道這些事情是什麼意思。
喜用這個本地回調 - 我想這一點。該文檔打印良好,但phone_number的值仍未定義。 – SNB