
Django框架学习
xuejianyong
爱好编程
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Django基础内容总结
1、Python环境的安装在Python的官网上下载27的Python安装包,依据系统类型下载,安装的过程当中需要注意加入相应的Python路径path内容。2、Django的安装,在Python环境中,使用命令,pip install Django==1.8安装即可进行3、安装好Django之后,创建项目命令:django-admin.py startproject testpr原创 2016-07-31 12:03:15 · 443 阅读 · 0 评论 -
Django数据库字段修改,以及查询
SELECT name FROM sqlite_masterWHERE type='table'ORDER BY name;select * from upload_user;insert a column to the existing tablesto insert a column in the models.pypasswor原创 2016-08-01 13:24:55 · 3279 阅读 · 0 评论