37
好的,我該怎麼做?我可以有一個Django模型,它有自己的外鍵引用嗎?
class Example(models.Model):
parent_example = models.ForeignKey(Example)
我想有一個模型有一個外鍵引用自己。當我嘗試創建這個時,我得到一個django驗證錯誤,該例子尚未定義。
好的,我該怎麼做?我可以有一個Django模型,它有自己的外鍵引用嗎?
class Example(models.Model):
parent_example = models.ForeignKey(Example)
我想有一個模型有一個外鍵引用自己。當我嘗試創建這個時,我得到一個django驗證錯誤,該例子尚未定義。
是的,只是這樣做:
class Example(models.Model):
parent_example = models.ForeignKey('self')