正则表达式的MongoDB Web API过滤器语法...它是如何完成的?

时间:2015-08-18 15:03:14

标签: regex node.js mongodb

我有一个内部MongoDB的网络连接,我可以看到我想要的收藏。 但我想根据包含子字符串的文本过滤结果...

这些都不起作用:

http://mongodb.edu/data/CollectionName/?filter_fieldName={$regex:SomeContainedText}
http://mongodb.edu/data/CollectionName/?filter_fieldName={"$regex":"SomeContainedText"}
http://mongodb.edu/data/CollectionName/?filter_fieldName={"$regex":SomeContainedText}
http://mongodb.edu/data/CollectionName/?filter_fieldName={/SomeContainedText/}
http://mongodb.edu/data/CollectionName/?filter_fieldName={"/SomeContainedText/"}
http://mongodb.edu/data/CollectionName/?filter_fieldName="/SomeContainedText/"

如何使用Web Api界面查找某些字段名的部分文本?

0 个答案:

没有答案