誰かがこの単純な、しかし欺瞞的な異常を説明できますか?
2 つのモデルがあります。ここで、B
は のサブモデルですA
。
# models.py
class A(models.Model):
a = models.IntegerField(blank=True)
class B(A):
b = models.IntegerField(blank=True)
シンプルですね。まだ実行中:
>>> A()
<A: A object>
>>> B()
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "django/db/models/base.py", line 357, in __init__
setattr(self, field.attname, val)
File "django/db/models/fields/related.py", line 271, in __set__
(instance._meta.object_name, self.related.get_accessor_name()))
ValueError: Cannot assign None: "B.b" does not allow null values.
ここで何が起こっているのですか?自分が空白であることに不満を持っているのに、なぜA.a
演技はうまくいくのですか?B.b
編集:設定によって上記の動作に違いがないことに気付きblank=True
ましたが、それでもこの問題は説明されていません。
そして今これ: (?!?!?!)
>>> a = A(a=5)
>>> b = B(b=6)
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "django/db/models/base.py", line 357, in __init__
setattr(self, field.attname, val)
File "django/db/models/fields/related.py", line 275, in __set__
self.related.get_accessor_name(), self.related.opts.object_name))
ValueError: Cannot assign "6": "B.b" must be a "B" instance.