如何在 MongoEngine 中通过 id 从列表(ListField)中删除项目?

发布于 2024-12-11 04:20:06 字数 127 浏览 0 评论 0原文

结构:

{title: 'test', comments: [{id:1, title: ''}, {id: 8, title: ''}]}

我需要删除 id=8 的项目, 谢谢。

structure:

{title: 'test', comments: [{id:1, title: ''}, {id: 8, title: ''}]}

i need remove the id=8 item, thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晚风撩人 2024-12-18 04:20:07

您需要在此处使用 $pull 运算符:

http://www.mongodb.org /display/DOCS/Updating#Updating-%24pull

db.collection.update({'title':'test'},{$pull : { 'comments' : { 'id' : 8 }});

You need to use $pull operator here :

http://www.mongodb.org/display/DOCS/Updating#Updating-%24pull

db.collection.update({'title':'test'},{$pull : { 'comments' : { 'id' : 8 }});
空城旧梦 2024-12-18 04:20:07

下面是 pull 操作符的一个示例,使用flask_mongoengine 并假设父对象类称为 Blog,并且注释是 Blog 中的 EmbeddedDocuments。

Blog.objects(id=blog_id).update_one(pull__comments___id=comment_id)

请注意评论 ID 中的三重下划线。这是因为,如果您想要 Comments 上的主键,则需要在模型声明中添加一个主键,如下所示:

class Comment(db.EmbeddedDocument):
    _id = db.ObjectIdField(primary_key=True, default=lambda: ObjectId())
    ...

lambda 函数将为您生成主键。

Here is one example of the pull operator, using flask_mongoengine and assuming the parent object class is called Blog, and the comments are EmbeddedDocuments within Blog.

Blog.objects(id=blog_id).update_one(pull__comments___id=comment_id)

Notice the triple underscore in comments id. This is because if you want primary keys on Comments, you need to add one in your model declaration like this:

class Comment(db.EmbeddedDocument):
    _id = db.ObjectIdField(primary_key=True, default=lambda: ObjectId())
    ...

The lamba function will generate your primary keys for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文