摘要: 准备 定义如下模型 1 from django.db import models 2 3 # 省份 4 class Province(models.Model): 5 name = models.CharField(max_length=10) 6 7 # 城市 8 class City(model 阅读全文
posted @ 2018-05-15 20:34 zze 阅读(198) 评论(0) 推荐(0) 编辑