首先导入它们:
from django.shortcuts import HttpResponse, render, redirect
1.HttpResponse
它是作用是内部传入一个字符串参数,然后发给浏览器。
例如:
def index(request): # 业务逻辑代码 return HttpResponse("OK")
2、render
render方法可接收三个参数,一是request参数,二是待渲染的html模板文件,三是保存具体数据的字典参数。
它的作用就是将数据填充进模板文件,最后把结果返回给浏览器。与jinja2类似。
例如:
def index(request): # 业务逻辑代码 return render(request, "index.html", {"name": "hello", "key": ["reading", "www"]})
3、redirect
接受一个URL参数,表示让浏览器跳转去指定的URL.
例如:
def index(request): # 业务逻辑代码 return redirect("https://www.baidu.com/")