代码改变世界

Web.py Cookbook 简体中文版 - 自定义NotFound消息

2012-11-26 10:08  justjavac  阅读(128)  评论(0编辑  收藏  举报

问题

如何定义NotFound消息和其他消息?

解法

import web

urls = (...)
app =  web.application(urls, globals())

def notfound():
    return web.notfound("Sorry, the page you were looking for was not found.")

    # You can use template result like below, either is ok:
    #return web.notfound(render.notfound())
    #return web.notfound(str(render.notfound()))

app.notfound = notfound

要返回自定义的NotFound消息,这么做即可:

class example:
    def GET(self):
        raise web.notfound()

也可以用同样的方法自定义500错误消息:

def internalerror():
    return web.internalerror("Bad, bad server. No donut for you.")

app.internalerror = internalerror
无觅相关文章插件,快速提升流量