Django:当没有定义__init __()时,模型类如何获取构造函数参数?

时间:2017-09-05 00:55:06

标签: python django

在我的app民意调查中,我们有文件models.py:

from __future__ import unicode_literals

from django.db import models

class Question(models.Model):
    question_text = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')

class Choice(models.Model):
    question = models.ForeignKey(Question, on_delete=models.CASCADE)
    choice_text = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)

在使用python manage.py shell启动shell后,我们可以写下:

from polls.models import Question
q = Question(question_text = "What's new?", pub_date=timezone.now())

Question类显然在创建对象时使用构造函数参数。但是在Question中的models.py的类定义中,没有任何构造函数参数的规范。那么这是如何工作的?

1 个答案:

答案 0 :(得分:2)

Question继承 models.Model类时,它会从那里获取构造函数。