在我的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
的类定义中,没有任何构造函数参数的规范。那么这是如何工作的?
答案 0 :(得分:2)
当Question
类继承 models.Model
类时,它会从那里获取构造函数。