gpt4 book ai didi

MongoDB 使用另一个集合中的另一个字段更新字段

转载 作者:行者123 更新时间:2023-12-05 06:03:49 25 4
gpt4 key购买 nike

我有两个收藏:书籍和类别。类别集合表示树结构,使用父项和子项使它们成为嵌套类别。

这本书可以有多个类别,并将它们存储在一个数组中。

示例:图书有类别,我想将其停用并将其设置为父类别。

这就是类别集合的填充方式。

db.categories.insertMany([
{
_id: "Space Opera",
ancestors: ["Science Fiction", "Fiction", "Science Fiction & Fantasy"],
parent: ["Science Fiction"],
},
{
_id: "Dystopian",
ancestors: ["Science Fiction", "Fiction", "Science Fiction & Fantasy"],
parent: ["Science Fiction"],
},
{
_id: "Cyberpunk",
ancestors: ["Science Fiction", "Fiction", "Science Fiction & Fantasy"],
parent: ["Science Fiction"],
},
{
_id: "Science Fiction",
ancestors: ["Fiction", "Science Fiction & Fantasy"],
parent: ["Fiction", "Science Fiction & Fantasy"],
},
{
_id: "Fantasy",
ancestors: ["Science Fiction & Fantasy"],
parent: ["Science Fiction & Fantasy"],
},
{
_id: "Science Fiction & Fantasy",
ancestors: [],
parent: [],
},
{
_id: "Fiction",
ancestors: [],
parent: [],
},
]);

另外,我如何查询这个并且只得到值“Science Fiction”(注意它存储在一个数组中)?

db.categories.find({_id : "Space Opera"}, {_id : 0, parent : 1})[0].parent // Did not work  

db.categories.find({_id : "Space Opera"}, {_id : 0, parent : 1}) // find parent

// result

[
{
"parent": [
"Science Fiction"
]
}
]
db.books.update(
{title : "Book1"},
{$set : {category : [**PARENT CATEGORY**]}}
)

我相信我可以在 books.update() 中使用上面的代码

我可以将它存储在一个单独的变量中,但在 vscode 中它给了我未定义的。内部查询并没有像之前那样给我正确的值,但我想你明白了。

db.books.update(
{title : "Book1"},
{$set : {category : [db.categories.find({_id : "Space Opera"}, {_id : 0, parent : 1})]}}
)

最佳答案

您可以通过此聚合管道获得的父项:

db.categories.aggregate([
{ $match: { _id: "Space Opera" } },
{ $project: { _id: 0, parent: { $first: "$parent" } } }
])

甚至

db.categories.aggregate([
{ $match: { _id: "Space Opera" } },
{ $project: { _id: 0, parent: { $first: "$parent" } } }
]).toArray().shift().parent

为了加入集合,您必须使用 $lookup运算符(operator)。请记住,像 MongoDB 这样的 NoSQL 数据库并未针对连接/查找进行优化。在现实生活中,您应该寻找更好的设计。

db.books.aggregate([
{ $match: { title: "Book1" } },
{
$lookup:
{
from: "categories",
pipeline: [
{ $match: { _id: "Space Opera" } },
{ $project: { _id: 0, parent: { $first: "$parent" } } }
],
as: "category"
}
},
{ $set: { category: { $first: "$category.parent" } } }
])

如果你想更新现有的集合,那么你必须为它创建一个循环:

db.books.aggregate([...]).forEach(function (doc) {
db.books.updateOne({ _id: doc._id }, { $set: { category: doc.category } });
})

关于MongoDB 使用另一个集合中的另一个字段更新字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66559800/

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