好吧,我该怎么做?
class Example(models.Model): parent_example = models.ForeignKey(Example)
我想让一个模型具有对自身的外键引用。当我尝试创建此代码时,我收到django验证错误,该错误尚未定义Example。
你应该用
models.ForeignKey('self')