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 对象

相关推荐
oak隔壁找我2 小时前
MySQL中 SHOW FULL PROCESSLIST` 输出中 `State` 列的所有可能值
后端
上进小菜猪2 小时前
基于 YOLOv8 的面向文档智能处理的表格区域检测系统 [目标检测完整源码]
后端
oak隔壁找我3 小时前
JVM常用调优参数
java·后端
IT_陈寒6 小时前
React状态管理终极对决:Redux vs Context API谁更胜一筹?
前端·人工智能·后端
晨星shine7 小时前
GC、Dispose、Unmanaged Resource 和 Managed Resource
后端·c#
蝎子莱莱爱打怪7 小时前
OpenClaw 从零配置指南:接入飞书 + 常用命令 + 原理图解
java·后端·ai编程
倚栏听风雨7 小时前
【ES避坑指南】明明存的是 "CodingAddress",为什么 term 查询死活查不到?彻底搞懂 text 和 keyword
后端
程序员爱钓鱼7 小时前
Go 操作 Windows COM 自动化实战:深入解析 go-ole
后端·go·排序算法
回家路上绕了弯8 小时前
深入解析Agent Subagent架构:原理、协同逻辑与实战落地指南
分布式·后端
子玖8 小时前
实现微信扫码注册登录-基于参数二维码
后端·微信·go