会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
失败只有一种,就是半途而废
sun96
2018年5月2日
Django二之Models-ORM单表和多表操作以及admin
摘要: 一、Models 1、数据库的配置 1.1 django默认支持sqlite,mysql, oracle,postgresql数据库。 <1> sqlite django默认使用sqlite的数据库,默认自带sqlite的数据库驱动 , 引擎名称:django.db.backends.sqlite3
阅读全文
posted @ 2018-05-02 16:29 sun96
阅读(762)
评论(0)
推荐(0)
编辑
FBV和CBV装饰器
摘要: FBV装饰器: def cook(request): err_msg="" if request.method == "GET": return render(request,'cookie.html') if request.method == "POST": username = request
阅读全文
posted @ 2018-05-02 15:21 sun96
阅读(142)
评论(0)
推荐(0)
编辑
Django分页
摘要: LIST=[] for i in range(1001): LIST.append(i) def user_list(request): current_page = request.GET.get('p',1) # 获取当前页数 current_page = int(current_page) p
阅读全文
posted @ 2018-05-02 11:56 sun96
阅读(141)
评论(0)
推荐(0)
编辑
公告
导航
博客园
新随笔
新文章
联系
管理