2018年3月23日

摘要: 添加主题和表单提交,都调用相同的view函数。 阅读全文

posted @ 2018-03-23 21:32 王将军之武库 阅读(253) 评论(0) 推荐(0) 编辑


2018年3月21日

摘要: class BaseHandler(object)方法get_response,控制着处理请求的流程,调用中间件,返回请求。 process_request、process_view按中间件的从上到下的顺序执行,process_template_response process_response、p 阅读全文

posted @ 2018-03-21 11:18 王将军之武库 阅读(1356) 评论(0) 推荐(0) 编辑


2018年3月20日

摘要: #djangobb之views show_forum(request, forum_id, full=True) default 16.00 ms (21 queries including 15 duplicates ) Query Timeline Time (ms) Action - SELECT "djangob... 阅读全文

posted @ 2018-03-20 22:13 王将军之武库 阅读(292) 评论(0) 推荐(0) 编辑


2018年3月19日

摘要: timerpanel时间统计的面板: 阅读全文

posted @ 2018-03-19 21:50 王将军之武库 阅读(394) 评论(0) 推荐(0) 编辑

摘要: 原作者: Jason Kirtland 日期: January 13th, 2009 许可证: Creative Commons Attribution-Share Alike 3.0 原文链接(PPT): http://discorporate.us/jek/talks/defaultdict/ 阅读全文

posted @ 2018-03-19 20:21 王将军之武库 阅读(204) 评论(0) 推荐(0) 编辑


2018年3月18日

摘要: def _add_q(self, q_object, used_aliases, branch_negated=False, current_negated=False, allow_joins=True, split_subq=True): """ Adds a Q-object to the current filter. ... 阅读全文

posted @ 2018-03-18 22:26 王将军之武库 阅读(319) 评论(0) 推荐(0) 编辑

摘要: >>> class a(object): pass >>> o=a() >>> o.a='ok'#直接给实例添加属性,调用了__setattri__ >>> o.a 'ok' >>> class a(object): @classmethod#类方法 def fun1(cls,a): print a >>> o=a() >>> o... 阅读全文

posted @ 2018-03-18 21:57 王将军之武库 阅读(112) 评论(0) 推荐(0) 编辑


2018年3月16日

摘要: class Paginator(object):#分页器 def __init__(self, object_list, per_page, orphans=0, allow_empty_first_page=True): self.object_list = object_list#要分页的数据列表 self.per_... 阅读全文

posted @ 2018-03-16 21:53 王将军之武库 阅读(239) 评论(0) 推荐(0) 编辑


2018年3月15日

摘要: 在数据库有外键的时候,使用 select_related() 和 prefetch_related() 可以很好的减少数据库请求的次数,从而提高性能。本文通过一个简单的例子详解这两个函数的作用。虽然QuerySet的文档中已经详细说明了,但本文试图从QuerySet触发的SQL语句来分析工作方式,从 阅读全文

posted @ 2018-03-15 19:26 王将军之武库 阅读(142) 评论(0) 推荐(0) 编辑


2018年3月14日

摘要: class ExtendsNode(Node): must_be_first = True context_key = 'extends_context' def __init__(self, nodelist, parent_name, template_dirs=None): self.nodelist = nodelist self... 阅读全文

posted @ 2018-03-14 17:13 王将军之武库 阅读(1349) 评论(0) 推荐(0) 编辑


Copyright © 2024 王将军之武库
Powered by .NET 9.0 on Kubernetes