MongoEngine 0.5:运行时错误:调用 Python 对象时超出最大递归深度

发布于 2024-12-08 09:20:03 字数 484 浏览 0 评论 0原文

    >>> from mongoengine import *
    >>> connect('foo')
    >>> class Foo(Document):
    ...   bar = ListField(ReferenceField('Foo'))
    >>> a = Foo()
    >>> a.save()
    >>> b = Foo()
    >>> b.save()
    >>> a.bar.append(b)
    >>> a.save()
    >>> b.bar.append(a)
    >>> b.save()

导致“运行时错误:超过最大递归深度,同时 在 MongoEngine 0.5 中调用 Python 对象”。我该如何解决这个问题?

    >>> from mongoengine import *
    >>> connect('foo')
    >>> class Foo(Document):
    ...   bar = ListField(ReferenceField('Foo'))
    >>> a = Foo()
    >>> a.save()
    >>> b = Foo()
    >>> b.save()
    >>> a.bar.append(b)
    >>> a.save()
    >>> b.bar.append(a)
    >>> b.save()

Results in a "RuntimeError: maximum recursion depth exceeded while
calling a Python object" in MongoEngine 0.5. How do I get around this?

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

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

发布评论

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

评论(2

你不是我要的菜∠ 2024-12-15 09:20:03

这已在开发分支中修复 - 请更新。

this has been fixed in the dev branch - please update.

待天淡蓝洁白时 2024-12-15 09:20:03

热电阻--> http://mongoengine-odm.readthedocs.org /en/latest/guide/defining-documents.html#reference-fields

要添加引用正在定义的文档的ReferenceField,
使用字符串“self”代替文档类作为参数
到 ReferenceField 的构造函数。

试试这个:

class Foo(Document):
    bar = ListField(ReferenceField('self'))

RTD --> http://mongoengine-odm.readthedocs.org/en/latest/guide/defining-documents.html#reference-fields

To add a ReferenceField that references the document being defined,
use the string 'self' in place of the document class as the argument
to ReferenceField‘s constructor.

Try this:

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