How to dynamically give the collection filed name in Meteor?

68 Views Asked by At

I have these codes now:

OneCollection.find({}, {fields: {'oneFiled.child1': 1}});
OneCollection.find({}, {fields: {'oneFiled.child2': 1}});

But I want to give a dynamically child filed name.

let childfield = "child1";
OneCollection.find({}, {fields: {'oneFiled.childfield': 1}});  // How to write this one?

How can I dynamically give the filed name? Thanks

2

There are 2 best solutions below

0
On BEST ANSWER

Like this ?

let childField = 'child1';
let listFields = {};
listFields['oneField.'+childField]=1;
OneCollection.find({}, {fields: listFields });
2
On

Use the bracket notation to construct the field object as follows:

var childfield = "child1",
    options = { fields: {} };

options["field"]["oneField."+childfield] = 1;
OneCollection.find({}, options);