码迷,mamicode.com
首页 > 其他好文 > 详细

bottle框架学习(六)之错误与重定向

时间:2015-06-21 15:55:58      阅读:134      评论:0      收藏:0      [点我收藏+]

标签: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框架学习(六)之错误与重定向

标签:bottle   python   错误与重定向   web   开发   网站   

原文地址:http://changfei.blog.51cto.com/4848258/1663979

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!