标签:rom col nbsp new strong 函数 att round repeat
from django.shortcuts import render,HttpResponse,redirect
(1)render 处理模板文件,可以渲染模板,第一个参数必须为封装好的元请求数据request
return render(request,"index.html",{"name":"zhang"})
(2)HttpResponse 处理字符串数据,可以是带标签的字符串
return HttpRequest("<a href=‘http://www.baidu.com‘>百度</a>")
(3)redirect 处理重定向文件
return redirect("index0.html")
标签:rom col nbsp new strong 函数 att round repeat
原文地址:https://www.cnblogs.com/open-yang/p/11221451.html