6

我有一些非常简单的代码:

from mongoengine import *

class Comment(Document):
    id = IntField(primary_key=True)
    text = StringField()

class Message(Document):
    id = IntField(primary_key=True)
    comments = ListField(ReferenceField(Comment))

connect('test_db')

c1 = Comment(id=1)
c1.text = 'message_one'
c1.save()

c2 = Comment(id=2)
c2.text = 'message_two'
c2.save()

m = Message(id=1)
m.comments = [c1, c2]
m.save()

msg = Message.objects.get(id=1)
for comment in msg.comments:
    print comment.id, comment.text

我预计它会打印

1 条消息_一个

2 message_two

但我有

1 条消息_一个

1 条消息_一个

当我使用任何 mongodb 管理 UI 来查看数据库时,一切似乎都很好:

{“_cls”:“消息”,“_id”:1,“_types”:[“消息”],

“评论”:[{“$ref”:“评论”,“$id”:1},{“$ref”:“评论”,“$id”:2}]}

我尝试在代码中交换 c1 和 c2(例如使用 m.comments = [c2, c1]),但出乎意料的是,我得到了正确的输出:

2 message_two

1 条消息_一个

此外,我尝试不使用自定义主键“id”,并且在这两种情况下一切正常。

我对这个错误感到非常困惑,似乎 mongoengine 有问题,或者我没有以正确的方式使用它。请问,有什么想法吗?

4

1 回答 1

4

取消引用中有一个错误,此错误已在 0.6.15 中修复 - 请升级!

于 2012-07-20T08:18:20.077 回答