摘要: 创建表 from django.db import models # Create your models here. #作者表 class Author(models.Model): #比较常用的信息放到这个表里面 name=models.CharField( max_length=32) age 阅读全文
posted @ 2021-04-01 15:50 西西cc 阅读(751) 评论(0) 推荐(0)