如何在瓶子中发送xml /应用程序格式?

时间:2010-08-16 05:14:37

标签: bottle

如果有人来到我的网址假设/得到它应该在瓶子框架中回复xml /应用程序格式。我怎样才能做到这一点?我使用elementree作为xml生成器。

1 个答案:

答案 0 :(得分:5)

official page上查看Cookie示例并按照以下步骤操作:

@route('/xml')
def xml():
    response.headers['Content-Type'] = 'xml/application'
    ....(create the xml here)......
    return xml_content_whatever