gpt4 book ai didi

java - 使用 Java Driver 3.4 将数据附加到 MongoDB-Document 中的数组

转载 作者:行者123 更新时间:2023-12-02 02:44:27 25 4
gpt4 key购买 nike

我正在使用 MongoDB Java 驱动程序 3.4,并且想要更新 Mongo-DB 集合中的文档(ID 为“12”)。目前,该文档如下所示:

{"id" : "12", "Data" : [{"Author" : "J.K. Rowling", 
"Books" : {"Harry Potter 1" : "$15.99", "Harry Potter 2" : "$16.49", "Harry Potter 3" : "$19.49"}},
{"Author" : "Philip Roth",
"Books" : {"American Pastoral" : "$12.99", "The Human Stain" : "$39.49", "Indignation" : "$29.49"}}
]}

我想通过将以下对象添加到数组“Data”来更新此文档:

{"Author" : "Stephen King", "Books" : {"Rose Red" : "$12.69", "Faithful" : "$9.49", "Throttle" : "$8.49"}}

为此我编写了以下java代码:

Document doc = new Document().append("Author", "Stephen King")
.append("Data", new Document("Rose Red", "$12.69")
.append("Faithful" : "$9.49")
.append("Throttle" : "$8.49"));

collection.update({"id", "12"}, {$push: {"Data" : doc.toJson()}});

IDE 通过向我显示以下内容来表明最后一条语句 (collection.update...) 有问题:

enter image description here

我不知道这个错误消息应该告诉我什么。语句末尾有一个分号。有人知道java代码有什么问题吗?

PS:这不是重复的 (MongoDB Java) $push into array我的问题与 Java Driver 3.4 有关。另一个问题与具有完全不同类的早期版本有关。

最佳答案

这里有一些不正确的地方。

字段 - 从数据更改为书籍

分隔符 - 从分号更改为逗号

方法 - 从update更改为updateOne,您可以直接传递Document

 Document doc = new Document("Author", "Stephen King")
.append("Books", new Document("Rose Red", "$12.69").append("Faithful", "$9.49").append("Throttle", "$8.49"));

collection.updateOne(new Document("id", "12"), Updates.push("Data", doc));

关于java - 使用 Java Driver 3.4 将数据附加到 MongoDB-Document 中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44865878/

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