Django连接MySQL数据库
CREATE DATABASE 'mysite' DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 在myslq中创建mysite数据库 修改应用polls包里面的models.py from django.db import models # Create your models here. # 在我们的polls应用程序中, # 将创建两个模型:Question和Choice, # Question有一个问题和一个出版日期, # Choice有两个领域:选择的文本和票数, # 每个Choice都关联一个Question class Question(models.Model): question_text = models.CharField( max_length= 200) pub_date = models.DateTimeField( '出版日期') class Choice(models.Model): question = models.ForeignKey(Question , on_delete=models.CASCADE) choice_text = models.CharField( max_length= 200) votes = models.IntegerField( default= 0)