用django写view函数的时候,我们常常用到django.shortcuts里面的很多常用函数, 这节我们来看看这些函数的具体用法吧 render render(request, template_name[, dictionary][, context_instance][, content_type][, status][, current_app]) render是渲染的意思,渲染一个页面以返回请求,返回的是一个HttpResponse对象 from django.shortcuts…