问题标签 [congomongo]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
98 浏览

mongodb - 刚果“在”查询

如何在刚果蒙戈查询中使用 MongoDB$in查询运算符?这是我不成功的猜测——我在任何地方都找不到关于查询语法的文档。

0 投票
1 回答
44 浏览

clojure - Congomongo fetch returns nil

I have simple app that should return single record from Mongo database.

id is correct but i keep getting nil as a return from this. Here is how my :_id looks like

I guess my problem is here somewhere, but I just don't have enough experience with Clojure to find an error

In this case id passed to where is 5245ca7d44aed3e864a1c830

0 投票
1 回答
90 浏览

regex - :where 子句中的正则表达式

我正在尝试向 Mongodb 查询包含通过表单传递的部分标题的文档。

query这是一个参数。()无论我输入什么,上面的代码都会返回空集合。

:nameisGladiator (2000):namein的示例值:where类似于#.*gladiator.*

0 投票
1 回答
77 浏览

mongodb - 如何使用 Clojure Map 从多个 MongoDB 集合中获取数据

我正在使用 clojure 从多个 MongoDB 集合中获取数据。

这里,coll 是存储集合名称的向量。这工作正常,因为它从多个 MongoDB 集合中获取数据并返回一个包含序列的向量(返回每个集合的序列)和文档。但是,我在使用map而不是mapv(用于以下代码片段)时遇到错误。

错误是 -java.lang.AssertionError: Assert failed: (connection? conn)

为什么它会抛出一个 AssertionError 以及如何仅使用它来解决它map