Webpy:如何将http状态代码设置为300

时间:2011-01-25 19:03:18

标签: python http-headers http-status-codes web.py

也许这是一个愚蠢的问题,但我无法弄清楚如何在webpy中使用http状态代码。

在文档中,我可以看到主要状态代码的类型列表,但是是否有一个用于设置状态代码的通用函数?

我正在尝试实现unAPI服务器,并且需要使用300 Multiple Choices回复只有标识符的请求。更多信息here

谢谢!

编辑:我刚发现我可以通过web.ctx

来设置它

web.ctx.status = '300 Multiple Choices'

这是最好的解决方案吗?

1 个答案:

答案 0 :(得分:17)

web.py为301和其他重定向类型执行此操作的方式是通过子类化web.HTTPError(进而设置web.ctx.status)。例如:

class MultipleChoices(web.HTTPError):
    def __init__(self, choices):
        status = '300 Multiple Choices'
        headers = {'Content-Type': 'text/html'}
        data = '<h1>Multiple Choices</h1>\n<ul>\n'
        data += ''.join('<li><a href="{0}">{0}</a></li>\n'.format(c)
                        for c in choices)
        data += '</ul>'
        web.HTTPError.__init__(self, status, headers, data)

然后在您的处理程序中输出此状态代码raise MultipleChoices

class MyHandler:
    def GET(self):
        raise MultipleChoices(['http://example.com/', 'http://www.google.com/'])

当然,它需要针对您的特定unAPI应用程序进行调整。

另见the source for web.HTTPError in webapi.py