无法在键为数字的MongoDB文档中引用键/值对

时间:2019-01-28 14:21:44

标签: node.js json mongodb key discord.js

我将数据库中文档的密钥设置为数字。我想引用键来获取值,但是无论我尝试什么,它都会返回未定义的值。

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是我要访问的文档的屏幕截图。

1 个答案:

答案 0 :(得分:0)

解决了!我需要使用.toJSON()将文档转换为json,以便将键引用为数字。