अंतर क्या है (भाषा में एक अजगर / django noob समझ सकता है) के बीच एक दृश्य में render()
, render_to_response()
और direct_to_template()
?
उदाहरण के लिए नाथन बोर्र्स के मूल एप्लिकेशन से
def comment_edit(request, object_id, template_name='comments/edit.html'):
comment = get_object_or_404(Comment, pk=object_id, user=request.user)
# ...
return render(request, template_name, {
'form': form,
'comment': comment,
})
लेकिन मैंने भी देखा है
return render_to_response(template_name, my_data_dictionary,
context_instance=RequestContext(request))
तथा
return direct_to_template(request, template_name, my_data_dictionary)
क्या अंतर है, किसी विशेष स्थिति में क्या उपयोग करें?
render()
1.3 से उपलब्ध है।