
django
python攻城狮999
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python django的搭建
https://blog.youkuaiyun.com/xm_csdn/article/details/74419683python django-admin.py startproject mysite创建diango项目,如果失败就把python取消掉转载 2018-07-20 16:00:43 · 167 阅读 · 0 评论 -
django原生数据库配置
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', #主要是这里,将默认的sqlite3改为mysql 'NAME': "spider", #数据库的名字 'USER': 'root', 'PASSWORD': '123456', ...原创 2018-09-17 10:52:29 · 237 阅读 · 0 评论