MongoDB $过滤器没有按预期工作

时间:2017-02-18 12:51:45

标签: java mongodb aggregation-framework mongo-java mongo-java-driver

这是我聚合的预测阶段:

Document filter = new Document(
                            "$filter", new Document(
                            "input", "$joins").append("as", "join").append(
                            "cond", "{$eq: [\'$$join.exited\', false]}"));
list.add(project(new Document("_id", 0).append("joins", filter).append("userName", 1)
                                             .append("chatID", 1).append("warned", 1)));

但它返回joinsexited设置为true(以及false)的元素。
你能告诉我我的错误是什么吗? (我应该提到list是聚合阶段的ArrayList

编辑。这是我期待的一份文件:

{
    userName: "test",
    //other fields than joins
    joins:
    [
        {
            remaining: 4
            userID: 1245
            exited: false
        },
        {
            remaining: 3
            userID: 2312
            exited: false
        }
    ]
}

我希望exited始终是假的。

1 个答案:

答案 0 :(得分:1)

您必须解析文档值,因为它被解释为文字字符串值。

更新

"cond", "{$eq: [\'$$join.exited\', false]}")

"cond", Document.parse("{$eq: [\'$$join.exited\', false]}")

"cond", new Document("$eq", Arrays.<Object>asList("$$join.exited", false))

两种变体都应该有效。