
render(request, template[, dictionary][, context_instance][, content_type][, status][, current_app])
render()是一个
render_to_response在1.3中崭新的快捷方式的品牌,该快捷方式将自动使用
RequestContext,从现在开始我肯定会使用它。
render_to_response(template[, dictionary][, context_instance][, mimetype])¶
render_to_response是教程等中使用的标准渲染功能。要使用
RequestContext你必须指定
context_instance=RequestContext(request)
direct_to_template是我在视图中使用的通用视图(而不是在URL中使用),因为像新
render()功能一样,它会自动使用
RequestContext及其所有
context_processors。
但
direct_to_template应避免使用,因为不建议使用基于函数的通用视图。使用render还是实际使用的类,
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)