如何在 MongoEngine 中通过 id 从列表(ListField)中删除项目?
结构:
{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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在此处使用 $pull 运算符:
http://www.mongodb.org /display/DOCS/Updating#Updating-%24pull
You need to use $pull operator here :
http://www.mongodb.org/display/DOCS/Updating#Updating-%24pull
下面是 pull 操作符的一个示例,使用flask_mongoengine 并假设父对象类称为 Blog,并且注释是 Blog 中的 EmbeddedDocuments。
请注意评论 ID 中的三重下划线。这是因为,如果您想要 Comments 上的主键,则需要在模型声明中添加一个主键,如下所示:
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.
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:
The lamba function will generate your primary keys for you.