如何在html页面上显示xml?
如何在python text / html中设置?
我在html中写道:
response.out.write
答案 0 :(得分:2)
假设您使用mod_python
:
response.content_type = "text/xml"
或者:
response.content_type = "text/html"
http://www.modpython.org/live/current/doc-html/pyapi-mprequest-mem.html
content_type
的字符串。内容类型。 Mod_python维护一个 内部标志(req._content_type_set)来跟踪是否 content_type是在Python中手动设置的。出版商 handler以下列方式使用此标志:当content_type不是时 显式设置,它试图通过检查来猜测内容类型 输出的前几个字节。
如果您只想在文本文件中输入漂亮的xml,请在xml上使用BeautifulSoup prettify()
。