小编Hak*_*kki的帖子

如何使用变量作为字段键获取Meteor集合字段值

我将给出一个代码示例来描述我的问题:

var id = Collection.insert({
    name: 'Charles Darwin',
    likes: 1
});

var someVariable = 'name';

Collection.findOne(id).name // This returns 'Charles Darwin', but how do I use someVariable to get the same result?
Collection.findOne(id).someVariable // This will certainly not work, but what is the right way to do it?
Run Code Online (Sandbox Code Playgroud)

javascript mongodb node.js meteor

2
推荐指数
1
解决办法
2265
查看次数

标签 统计

javascript ×1

meteor ×1

mongodb ×1

node.js ×1