摘要: models.py: from django.db import models class Human(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=32) age 阅读全文
posted @ 2019-08-02 22:50 Sch01aR# 阅读(614) 评论(0) 推荐(1) 编辑