Django创建投票应用
from django.db import models
from django.utils import timezone
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def __str__(self):
return self.question_text
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
这个简单的例子展示了如何使用Django模型来创建一个基本的投票应用。Question
模型代表一个问题,它有一个question_text
字段来存储问题的文本,和一个pub_date
字段来记录问题的发布时间。Choice
模型代表一个投票选项,它有一个choice_text
字段来存储选项的文本,和一个votes
字段来记录得票数。这两个模型之间存在一个外键关系,每个Choice
对象都关联到一个Question
对象。
评论已关闭