本文实例讲述了Sanic框架Cookies操作。分享给大家供大家参考,具体如下:
Sanic是一个类似Flask的Python 3.5+ Web服务器,它的写入速度非常快。除了Flask之外,Sanic还支持异步请求处理程序。这意味着你可以使用Python 3.5中新的闪亮的异步/等待语法,使你的代码非阻塞和快速。
在上一篇《Sanic框架配置》中已经讲到,如何在Sanic进行相关的配置,接下来将介绍一下Sanic的Cookies的使用,Cookies是用户浏览器内部的一些数据,Sanic可以写入和读取存储为键值对的Cookie
在返回响应时,可以在Response
对象上设置Cookie:
from sanic.response import text @app.route("/set_cookie") async def set_cookie(request): response = text("set cookie success") response.cookies["test"] = "test" return response
Cookie可以像字典一样设置,并且具有如下参数:
/
举个例子:
@app.route("/set_cookie") async def set_cookie(request): response = text("set cookie success") response.cookies["test"] = "test" response.cookies["test"]["max-age"] = 10 return response
设置此Cookie的活跃秒数为10,反复获取此Cookie会发现,过了10s后此Cookie不存在了
用户的Cookie可以通过Request
对象的cookies
字典进行访问:
from sanic.response import text @app.route("/get_info") async def get_info(request): test = request.cookies.get("test") return text("cookie:{}".format(test)
可以在语义上或明确的删除Cookie
from sanic.response import text @app.route("/del_info") async def del_info(request): response = text("delete cookie success") del response.cookies["test"] return response
更多关于Python相关内容可查看本站专题:《Python入门与进阶经典教程》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。