Django:找出继承层次结构中的哪个表具有该字段
考虑以下示例:
class Base(models.Model):
myfield = models.CharField()
class Derived(Base):
pass
现在,基类和派生类在数据库中将具有不同的表。
我的问题是如何找出 myfield 属于哪个表?
Consider the following example:
class Base(models.Model):
myfield = models.CharField()
class Derived(Base):
pass
Now, the base and derived classes will have different tables in the databases.
My question is how to find out which table myfield belongs to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 _meta.get_fields_with_model() 方法:
Use
_meta.get_fields_with_model()
method: