我将给出一个代码示例来描述我的问题:
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?