摘要: # 在ORM中设置自关联字段 class Comment(models.Model): user = models.ForeignKey(to='UserInfo') article = models.ForeignKey(to='Article') content = models.CharFie 阅读全文
posted @ 2019-11-17 22:59 去遇见最好的自己 阅读(488) 评论(0) 推荐(0) 编辑
摘要: # 修改settings.py DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'test', 'HOST':'127.0.0.1', 'PORT':3306, 'USER':'root', 'PASS 阅读全文
posted @ 2019-11-17 21:22 去遇见最好的自己 阅读(3036) 评论(0) 推荐(1) 编辑