自django1.3开始:render()方法是render_to_response的一个崭新的快捷方式,
前者会自动使用
RequestContext。而后者必须coding
出来,这是最明显的区别,当然前者更简洁。 return render_to_response('blog_add.html',{'blog': blog, 'form': form, 'id': id, 'tag': tag}, context_instance=RequestContext(request)) return render(request, 'blog_add.html', {'blog': blog, 'form': form, 'id': id, 'tag': tag})
相关文章
- 08-15spring aop pointcut 切入点是类的公共方法(私有方法不行),还是接口的方法
- 08-15很多网友解决方法是把Python27.lib、Python27.dll
- 08-15如何理解 slice() 方法是浅拷贝?深入数组浅拷贝里的小细节
- 08-15制作H5像一个div中一张长图,里边是一条一条信息,需要点击的响应式方法
- 08-15java-在JShell中声明的方法是lambda?
- 08-15css 两边是线,中间文字的多种实现方法
- 08-15EntityManagerFactory 是多线程的 将其变成一个单线程(使用静态方法)提交效率
- 08-15Day006 什么是方法
- 08-15Vue.set 方法是如何实现的
- 08-15数组中有哪些方法是响应式的