Bottle是一个轻量级的Web框架,此框架只由一个 bottle.py 文件构成,不依赖任何第三方模块。
#!/usr/bin/env python # -*- coding:utf-8 -*- from bottle import template, Bottle app = Bottle() @app.route('/say') def index(): return "Hello World" # return template('<b>Hello {{name}}</b>!', name="bottle") if __name__ == '__main__': app.run(server="tornado",host='0.0.0.0', port=8888)
1、路由系统
路由系统是的url对应指定函数,当用户请求某个url时,就由指定函数处理当前请求,对于Bottle的路由系统可以分为一下几类:
- 静态路由
- 动态路由
- 请求方法路由
- 二级路由
1.1静态路由
@app.route("/login") # 默认为get请求 def hello(): return """ <form action="/login" method="post"> Username:<input name="username" type="text" /> Password:<input name="password" type="password" /> <input value="Login" type="submit"/> </form> """ @app.route("/login",method="POST") def do_login(): username = request.forms.get("username") password = request.forms.get("password") print(username,password) if username and password: return "<p>login success</p>" else: return "<p>login failure</p>"
1.2动态路由
@app.route('/say/<name>') def callback(name): return template('<b>Hello {{name}}</b>!') @app.route('/say/<id:int>') def callback(id): return template('<b>Hello {{id}}</b>!') @app.route('/say/<name:re:[a-z]+>') def callback(name): return template('<b>Hello {{name}}</b>!') @app.route('/static/<path:path>') def callback(path): return static_file(path, root='static')
1.3请求方法路由
@app.route('/hello/', method='POST') # 等同于@app.post('/hello/') def index(): ... @app.get('/hello/') # 等同于@app.route('/hello/',method='GET') def index(): ... @app.post('/hello/') # 等同于@app.route('/hello/',method='POST') def index(): ... @app.put('/hello/') # 等同于@app.route('/hello/',method='PUT') def index(): ... @app.delete('/hello/') def index(): ...
1.4二级路由
#!/usr/bin/env python # -*- coding:utf-8 -*- from bottle import template, Bottle app01 = Bottle() @app01.route('/hello/', method='GET') def index(): return template('<b>App01</b>!') app01.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from bottle import template, Bottle app02 = Bottle() @app02.route('/hello/', method='GET') def index(): return template('<b>App02</b>!') app02.py
#!/usr/bin/env python # -*- coding:utf-8 -*- from bottle import template, Bottle from bottle import static_file app = Bottle() @app.route('/hello/') def index(): return template('<b>Root {{name}}</b>!', name="bottle") from root_dir import app01 from root_dir import app02 app.mount('app01', app01.app01) app.mount('app02', app02.app02) app.run(host='localhost', port=8888)
1.5静态文件映射,static_file()函数用于响应静态文件的请求
# 静态文件映射,static_file()函数用于响应静态文件 的请求 @app.route("/static/<filename:re:.*\.jpg>") def send_image(filename): return static_file(filename, root=os.getcwd(), mimetype="image/jpg") @app.route("/static/<filename:path>") # 可匹配路径 def send_image(filename): return static_file(filename, root=os.getcwd(), mimetype="image/jpg") # 强制下载 @app.route("/static/<filename:path>") # 可匹配路径 def download(filename): return static_file(filename, root=os.getcwd(), download=filename)
1.6使用error()函数自定义错误页面
@app.error(404)
def error404(error):
return "我找不到目标了,我发生错误了"
1.7HTTP错误和重定向
abort()函数是生成HTTP错误的页面的一个捷径
@app.route("/restricted") def restricted() abort(401,"Sorry, access denied") # 将url重定向到其他url,可以在location中设置新的url,接着返回一个303 # redirect()函数可以帮助我们做这件事 @app.route("/wrong/url") def wrong() redirect("/right/url")
其他异常
除了HTTPResponse或者HTTPError以外的其他异常,都会导致500错误,因此不会造成WSGI服务器崩溃
将bottle.app().catchall的值设为False来关闭这种行为,以便在中间件中处理异常
2.cookies
@app.route("/login", method="POST") def do_login(): username = request.forms.get("username") password = request.forms.get("password") print(username, password) if username and password: response.set_cookie("name",username, secret= 'some-secret-key') # 设置cookie return "<p>login success</p>" else: return "<p>login failure</p>" @app.route("/static/<filename:re:.*\.jpg>") def send_image(filename): username = request.get_cookie("name", secret= 'some-secret-key') # 获取cookie if username: return static_file(filename, root=os.getcwd(), mimetype="image/jpg") else: return "verify failed"
bottle就的 set_cookie 的默认 path 是当前路径,也就是说,在这个页面上存入的 cookie 在别的页面通常是取不到的,不熟悉这点的人几乎都要栽在这里。而且更坑的是:set_cookie 有 path 参数可以指定 path ,但 get_cookie 却没有这个 path 参数可选——也就是说,你即使设置了其它 path ,如果 get_cookie 的时候不是刚好在那个 path 下的话,也取不到……
解决方法:把所有的 cookie 都放到"/"下面,至少目前用下来感觉没问题。
注:request.query 或 request.forms 都是一个 FormDict 类型,
其特点是:当以属性方式访问数据时——如 request.query.name,返回的结果是 unicode ,当以字典试访问数据时,如 :request.query['name']或者request.query.get("name"),则返回的结果是原编码字符串
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 魔兽世界奥卡兹岛地牢入口在哪里 奥卡兹岛地牢入口位置一览
- 和文军-丽江礼物[2007]FLAC
- 陈随意2012-今生的伴[豪记][WAV+CUE]
- 罗百吉.2018-我们都一样【乾坤唱片】【WAV+CUE】
- 《怪物猎人:荒野》不加中配请愿书引热议:跪久站不起来了?
- 《龙腾世纪4》IGN 9分!殿堂级RPG作品
- Twitch新规禁止皮套外露敏感部位 主播直接“真身”出镜
- 木吉他.1994-木吉他作品全集【滚石】【WAV+CUE】
- 莫华伦.2022-一起走过的日子【京文】【WAV+CUE】
- 曾淑勤.1989-装在袋子里的回忆【点将】【WAV+CUE】
- 滚石香港黄金十年系列《赵传精选》首版[WAV+CUE][1.1G]
- 雷婷《乡村情歌·清新民谣》1:1母盘直刻[低速原抓WAV+CUE][1.1G]
- 群星 《DJ夜色魅影HQⅡ》天艺唱片[WAV+CUE][1.1G]
- 群星《烧透你的耳朵2》DXD金佰利 [低速原抓WAV+CUE][1.3G]
- 群星《难忘的回忆精选4》宝丽金2CD[WAV+CUE][1.4G]