摘要: 路径如下: admin.py的代码: from django.contrib import admin from sign.models import Event,Guest # Register your models here. class EventAdmin(admin.ModelAdmin 阅读全文
posted @ 2020-06-20 11:22 Harry_666 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 错误如下 OperationalError no such table 解决方法: 首先执行: python manage.py makemigrations 再执行 python manage.py migrate 问题得到解决。 阅读全文
posted @ 2020-06-20 10:27 Harry_666 阅读(215) 评论(0) 推荐(0) 编辑
摘要: from django.db import models # Create your models here. class Event(models.Model): name = models.CharField(max_length=100) #发布会标题 limit = models.Integ 阅读全文
posted @ 2020-06-20 10:22 Harry_666 阅读(268) 评论(0) 推荐(0) 编辑