标签:bottle python 错误与重定向 web 开发 网站
[root@ju bottle]# cat error.py #!/usr/bin/env python #coding=utf-8 from bottle importroute,run,error,abort,redirect #访问页面出错,Bottle会显示一个默认的错误页面,提供足够的debug信息。你也可以使用error()函数来自定义你的错误页面 @error(404) def error404(error): return ‘访问出错啦!‘ #一般返回一个错误页面模版,这里为了简单起见,就不写了 @route(‘/hello‘) def hello(): return ‘hello!‘ @route(‘/redtest‘) def redtest(): redirect(‘/hello‘) #访问/redtest的时候,会被重定向到/hello页面 @route(‘/abort404‘) def abort404(): abort(404) #当访问/aborttest时,会触发404错误 @route(‘/abort500‘) def abort500(): abort(500) #当访问/aborttest时,会触发500错误 run(host=‘0.0.0.0‘,port=8000)
本文出自 “乾楠有” 博客,请务必保留此出处http://changfei.blog.51cto.com/4848258/1663979
标签:bottle python 错误与重定向 web 开发 网站
原文地址:http://changfei.blog.51cto.com/4848258/1663979