首页 > Python框架 > 正文

Django一对多关系模型Add a related_name argument to the definit的错误

下面是一对多的关系模型

class Cats(models.Model):

   #...

   catnum = models.IntegerField(unique=True)

   #...


class Items(models.Model):

   catid = models.ForeignKey(Cats, to_field='catnum', db_column='catid')

   #...

Unhandled exception in thread started by

Traceback (most recent call last):

File “c:\python27\lib\site-packages\django\core\management\commands\runserver.py”, line 48, in inner_run

self.validate(display_num_errors=True)

File “c:\python27\lib\site-packages\django\core\management\base.py”, line 253, in validate

raise CommandError(“One or more models did not validate:\n%s” % error_text)

django.core.management.base.CommandError: One or more models did not validate:

beauty.items: Reverse query name for field ‘catid’ clashes with field ‘Cats.items’. Add a related_name argument to the definit

ion for ‘catid’.

发生的错误大概意思是要增加一个related_name参数,所以Items模型改为


class Items(models.Model):

   catid = models.ForeignKey(Cats, to_field='catnum', db_column='catid', related_name='catid')

   #...


上一篇:使用tornado的coroutine进行编程
下一篇:Django模板系统 — 过滤器

PythonTab微信公众号:

Python技术交流互助群 ( 请勿加多个群 ):

群1: 87464755

群2: 333646237

群3: 318130924

群4: 385100854