博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HttpResponse render render_to_response 三者的区别
阅读量:5310 次
发布时间:2019-06-14

本文共 707 字,大约阅读时间需要 2 分钟。

HttpResponse("

Here's the text of the Web page.

") 服务器直接返回一段字符串给客户端浏览器
或者用它返回一个文件HttpResponse(json_str, content_type='application/json; charset=utf-8')

render render_to_response

这里的render()不是django.template的t.render(),而是最近Django版本新增的django.shortcuts.render(),类似django.shortcuts.render_to_response(),但这个render()是用来替代render_to_response(),

在提到,

This function preceded the introduction of render() and works similarly except that it doesn’t make the request available in the response.

It’s not recommended and is likely to be deprecated in the future.

不建议再用render_to_response,用render代替。

render默认要求带入request,虽然render_to_response也可以用RequestContext将request参数带入。

转载于:https://www.cnblogs.com/lightwind/p/6038350.html

你可能感兴趣的文章
中建项目环境迁移说明
查看>>
三.野指针和free
查看>>
activemq5.14+zookeeper3.4.9实现高可用
查看>>
TCP/IP详解学习笔记(3)IP协议ARP协议和RARP协议
查看>>
简单【用户输入验证】
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
Spring面试题
查看>>
窥视SP2010--第一章节--SP2010开发者路线图
查看>>
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>