属性
content:表示返回的内容。
charset:表示response采用的编码字符集,默认为utf-8。
status_code:返回的HTTP响应状态码。
content-type:指定返回数据的的MIME类型,默认为'text/html'。
方法
_init_:创建HttpResponse对象后完成返回内容的初始化。
set_cookie:设置Cookie信息。
set_cookie(key, value='', max_age=None, expires=None)
cookie是网站以键值对格式存储在浏览器中的一段纯文本信息,用于实现用户跟踪。
max_age是一个整数,表示在指定秒数后过期。
expires是一个datetime或timedelta对象,会话将在这个指定的日期/时间过期。
max_age与expires二选一。
如果不指定过期时间,在关闭浏览器时cookie会过期。
delete_cookie(key):删除指定的key的Cookie,如果key不存在则什么也不发生。
write:向响应体中写数据。
Response对象都是用render和HttpResponse返回的对象:
from django.shortcuts import render
from django.http import HttpResponse