子类 HttpResponseRedirect
重定向,服务器端跳转
构造函数的第一个参数用来指定重定向的地址
在 views1.py 中
from django.http import HttpResponse,HttpResponseRedirect
def redirectTest(request):
#return HttpResponseRedirect(reverse('booktest:getTest1')) #使用反向解析
return HttpResponseRedirect('http://www.baidu.com')
同需要去配置路径
子类 JsonResponse
返回 json 数据,一般用于异步请求
帮助用户创建 JSON 编码的响应
参数 data 是字典对象
JsonResponse 的默认 Content-Type 为 application/json
from django.http import JsonResponse
def index1(request):
return JsonResponse({"list": "abc"})
网友评论