gpt4 book ai didi

node.js - 如何在 Node.js 中使用变量创建 MongoDB 索引?

转载 作者:太空宇宙 更新时间:2023-11-04 00:07:13 24 4
gpt4 key购买 nike

我在 Node.js 的 MongoDB 中使用 createIndex()。我想知道如何将变量插入 createIndex 中。

例如,我有 var x = "insert"。我想使用x创建一个名为“insert”的索引。我尝试过 createIndex({x:1}) 但所做的只是使 x 成为索引。

最佳答案

在 ES6 中

createIndex({[x]:1})

在 ES5 中

var indexQuery = {};
indexQuery[x] = 1;
createIndex(indexQuery);

关于node.js - 如何在 Node.js 中使用变量创建 MongoDB 索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51705350/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com