gpt4 book ai didi

node.js - 在一个变量上运行的 Node JS 中使用正则表达式的 Mongo 查询

转载 作者:IT老高 更新时间:2023-10-28 13:08:56 25 4
gpt4 key购买 nike

我这里有问题。我想在我的 Node JS 文件中使用 LIKE 之类的东西来查询我的 MongoDB,以获取传统的关系数据库。问题是我想要喜欢的东西不是文字......它是一个变量!到目前为止,我还没有找到这样做的好方法。这是我拍的“durrr first try”:

var result = postData.replace(/\+/g,' ').substring(5);
db.testlogwiki.find({"line_text" : /result/ };
//predictably only matches to the literal "result" as opposed to my variable

teSTLogwiki 是用 Mongo 制作的...我让它运行,这确实对包含“结果”的“line_text”的 db 条目进行了马赫。

这似乎是一个非常简单的问题......

最佳答案

试试这个:

db.testlogwiki.find({"line_text" : new RegExp(result) };

关于node.js - 在一个变量上运行的 Node JS 中使用正则表达式的 Mongo 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10728043/

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