2023年8月17日
摘要: 创建模型 from django.db import models #学生类 class Student(models.Model): id = models.AutoField(primary_key=True) sname = models.CharField(max_length=20) # 阅读全文
posted @ 2023-08-17 11:46 boye169 阅读(60) 评论(0) 推荐(0) 编辑