本文实例讲述了Sanic框架请求与响应。分享给大家供大家参考,具体如下:
前面介绍了Sanic框架的路由,这里接着介绍Sanic框架的请求与响应。
简介
Sanic是一个类似Flask的Python 3.5+ Web服务器,它的写入速度非常快。除了Flask之外,Sanic还支持异步请求处理程序。这意味着你可以使用Python 3.5中新的闪亮的异步/等待语法,使你的代码非阻塞和快速。
前言:Sanic最低支持Python 3.5,如果需要学习Sanic,请先下载版本不低于3.5的Python包
请求数据
当一个端点收到一个HTTP请求时,路由功能被传递到一个request对象。以下变量可以作为request对象的属性访问:
@app.route("/post_data",methods=["POST"]) async def post_data(request): # 将打印传递过来的JSON数据 print(request.json) return text("it is ok!")
@app.route("/post_file_data",methods=["POST"]) async def post_file_data(request): info = request.files.get("file") print(info.name) print(info.type) print(info.body) return text("it is ok!")
@app.route("/post_form_data",methods=["POST"]) async def post_form_data(request): name = request.form.get("name") return text("it is ok!")
@appr.route("/get_app_info") async def get_app_info(request): print(request.app.config) return text("it is ok!")
get与getlist
当我们访问一个GET请求,并传入相关参数时,如下的请求:
@app.route("/get_info") async def get_info(request): print(request.args.get("name")) print(request.args.getlist("name") return text("it is ok!")
当我们传入一个name为laozhang时,在上面有提到,args字典将会是{"name":["laozhang"],所以,访问上面的路由,将会打印如下结果:
laozhang
["laozhang"]
响应
使用sanic.response模块中的函数来创建响应
纯文本:
from sanic.response import text @app.route("/text") async def get_text(request): return text("it is text response!")
HTML:
from sanic.response import html @app.route("/html") async def get_html(request): return html("<p>it is html!</p>")
JSON:
from sanic.response import json @app.route("/json") async def get_json(request): return json({"name":"laozhang"})
FILE:
from sanic.response import file @app.route("/file") async def get_file(request): return await file("/xx/aa/abc.png")
切记,不能少了await关键字
STREAM:
from sanic.response import stream @app.route("/stream") async def get_stream(request): async def stream_fn(response): response.write("abc") response.write("def") return stream(stream_fn,content_type="text/plain")
文件流:针对大文件,上面文件与流的组合
from sanic.response import file_stream @app.route("/file_stream") async def get_file_stream(request): return await file_stream("/xx/aa/abc.png")
切记,不能少了await关键字
重定向:
from sanic.response import redirect @app.route("/redirect") async def get_redirect(request): return redirect("/json")
RAW:未编码的body响应
from sanic.response import raw @app.route("/raw") async def get_raw(request): return raw(b"it is raw data")
访问此接口后,将会立即下载一个名为raw的文件,里面包含内容it is raw data
修改请求头和状态值:如果需要修改请求头和状态值,请将headers和status参数传递给上面这些函数,下面以json为例
from sanic.response import json @app.route("/json") async def get_json(request): return json({"name":"老张"},headers={"age":18},status=403)
访问此接口后,会发现原来本应是200的状态值变成了403,而且请求头信息中增加了{"age":18}
更多关于Python相关内容可查看本站专题:《Python入门与进阶经典教程》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。