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

时间:2015-04-10 10:41:57

标签: javascript node.js mongodb 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?

1 个答案:

答案 0 :(得分:5)

尝试使用 bracket notation

访问对象属性
Collection.findOne(id)[someVariable];