Python / Django中多个抽象模型继承中的字段菱形模式
Posted
技术标签:
【中文标题】Python / Django中多个抽象模型继承中的字段菱形模式【英文标题】:Field diamond pattern in multiple abstract model inheritance in Python/Django 【发布时间】:2015-03-12 14:56:48 【问题描述】:我有以下模型类层次结构:
from django.db import models
class Entity(models.Model):
createTS = models.DateTimeField(auto_now=False, auto_now_add=True)
class Meta:
abstract = True
class Car(Entity):
pass
class Meta:
abstract = True
class Boat(Entity):
pass
class Amphibious(Boat,Car):
pass
不幸的是,这不适用于 Django:
shop.Amphibious.createTS: (models.E006) The field 'createTS' ***es with the field 'createTS' from model 'shop.boat'.
即使我声明了 Boat 抽象,也无济于事:
shop.Amphibious.createTS: (models.E006) The field 'createTS' ***es with the field 'createTS' from model 'shop.amphibious'.
是否可以有一个具有多重继承的模型类层次结构和一个声明某些字段的公共基类(models.Model 子类)?
【问题讨论】:
奇怪的是,models.AutoField(primary_key=True)
根据文档工作。
@dmg 我猜你指的是multiple inheritance 上的文档。诀窍是一个名为id
的AutoField
被隐式添加到Piece
。子模型继承此字段,因此它们已经有一个主键。这可以防止添加新的隐式 id
字段 -> 没有名称冲突。这并不意味着您可以覆盖父字段。
【参考方案1】:
使用它,看看它是否有帮助。如果您尝试在模型中包含时间戳,则只需创建一个仅包含时间戳的基本模型。
from django.db import models
class Base(models.Model):
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
class Meta:
abstract = True
class Boat(Base):
boat_fields_here = models.OnlyBoatFields()
class Amphibious(Boat):
# The boat fields will already be added so now just add
# the car fields and that will make this model Amphibious
car_fields_here = models.OnlyCarFields()
我希望这会有所帮助。我看到你发布这个问题已经 5 个月了。如果您已经找到了更好的解决方案,请与我们分享,对我们学习有很大帮助。 :)
【讨论】:
以上是关于Python / Django中多个抽象模型继承中的字段菱形模式的主要内容,如果未能解决你的问题,请参考以下文章
不能使用继承的 Django 模型的 Meta 类来配置在继承的抽象模型中定义的字段