Is there any way to use a dynamic key with node-mongodb-native?

后端 未结 2 1718
没有蜡笔的小新
没有蜡笔的小新 2021-01-06 00:09

Is there any way to use dynamic keys with the node-mongodb-native driver? By this I mean having a variable hold the key instead of using the key directly.

As in when

2条回答
  •  余生分开走
    2021-01-06 00:46

    2020 Edit: Object literals can now be created in a couple of handy new ways:

    You can now use a variable as a property name in an object literal by wrapping it in square brackets:

    const ID = "_id";
    col.insert({ [ID]: "wak3ajakar00" });
    

    You can use the variable name as the property name, and the variable value as the property value in an object literal like this:

    const _id = "wak3ajakar00";
    col.insert({ _id });
    

    Original Answer from 2011:

    In object literal syntax, you cannot use a variable as the key name, only values. The way to do it, is the way you already discovered - create your object first, then add the property as a separate step using square bracket notation.

    var obj = {};
    var ID = "_id";
    obj[ID] = "wak3ajakar00";
    

提交回复
热议问题