我有一个内部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界面查找某些字段名的部分文本?