摘要: 创建表结构 1 from django.db import models 2 3 # Create your models here. 4 class Book(models.Model): 5 name = models.CharField(max_length=128) 6 price = mo 阅读全文