Django 视图

请求对象: HttpRequest 对象

get():返回字符串,如果该键对应有多个值,取出该键的最后一个值。

GET有相同的键,就把所有的值放到对应的列表里

取值格式:对象.方法。

def runoob(request):

name = request.GET.get("name")

return HttpResponse('姓名:{}'.format(name))

POST常用于 form 表单,form 表单里的标签 name 属性对应参数的键,value 属性对应参数的值

def runoob(request):

name = request.POST.get("name")

return HttpResponse('姓名:{}'.format(name))

BODY:数据类型是二进制字节流,是原生请求体里的参数内容

def runoob(request):

name = request.body

print(name)

return HttpResponse("hello")

path:获取 URL 中的路径部分,数据类型是字符串

def runoob(request):

name = request.path

print(name)

return HttpResponse("world")

method:获取当前请求的方式,数据类型是字符串,且结果为大写

def runoob(request):

name = request.method

print(name)

return HttpResponse("hello world")

响应对象:HttpResponse 对象

响应对象主要有三种形式:HttpResponse()、render()、redirect()。

HttpResponse(): 返回文本,参数为字符串,字符串中写文本内容

def runoob(request):

return HttpResponse("你好")

return HttpResponse("<a href='https://www.runoob.com/'>你好</a>")

render(): 返回文本,第一个参数为 request,第二个参数为字符串(页面名称),第三个参数为字典(可选参数,向页面传递的参数:键为页面参数名,值为views参数名)。

def runoob(request):

name ="张三"

return render(request,"runoob.html",{"name":name})

redirect()重定向,跳转新页面。参数为字符串,字符串中填写页面路径。一般用于 form 表单提交后,跳转到新页面。

def runoob(request):

return redirect("/index/")

render 和 redirect 是在 HttpResponse 的基础上进行了封装:

render:底层返回的也是 HttpResponse 对象

redirect:底层继承的是 HttpResponse 对象

相关推荐
李剑一13 小时前
Python学习笔记2
python
IT_陈寒13 小时前
Redis性能翻倍的5个冷门技巧,90%开发者都不知道第3个!
前端·人工智能·后端
p***976113 小时前
SpringBoot(7)-Swagger
java·spring boot·后端
j***294813 小时前
springboot集成onlyoffice(部署+开发)
java·spring boot·后端
晨非辰13 小时前
C++ 波澜壮阔 40 年:从基础I/O到函数重载与引用的完整构建
运维·c++·人工智能·后端·python·深度学习·c++40周年
有梦想的西瓜13 小时前
如何优化电力系统潮流分布:最优潮流(OPF)问题
python·电力·opf
张较瘦_14 小时前
Springboot | Spring Boot 3 纯 JDBC 实现宠物管理系统增删改查(无 ORM 框架)
spring boot·后端·数据库开发
h***673716 小时前
SpringBoot整合easy-es
spring boot·后端·elasticsearch
DanCheng-studio19 小时前
网安毕业设计简单的方向答疑
python·毕业设计·毕设
轻抚酸~20 小时前
KNN(K近邻算法)-python实现
python·算法·近邻算法