我将数据库中文档的密钥设置为数字。我想引用键来获取值,但是无论我尝试什么,它都会返回未定义的值。
for(let x = 0; x < channelList.length; x++) {
var chanQuery = channelModel.findOne({channelID: channelList[x]}, "channelName", function(err, result) {
if(err) {console.log(err)};
return result;
});
var datQuery = userModel.findOne({userID: userList[i]}, function(err, result) {
if(err) {console.log(err)};
return result;
});
chanQuery.then(function(doc) {
datQuery.then(function(doc2) {
msgChannel.send(doc.channelName + ": " + doc2[channelList[x]];
});
});
Here是我要访问的文档的屏幕截图。
答案 0 :(得分:0)
解决了!我需要使用.toJSON()将文档转换为json,以便将键引用为数字。