在<code> format Google app engine python project</code>打印网络回复

时间:2013-11-22 19:10:32

标签: python google-app-engine

我是Google App引擎的初学者。执行一个带有用户查询和打印响应的项目​​。我用self.response.write('<code>{'+q+'}{'+str(code)+'}</code>')这种方式来打印我的回复,当我读到它时,它就像<code>{pi}{3.14159265359}</code>。我需要响应应该以格式显示,但标签不应该响应。怎么做。

请考虑以下网址:http://ishamsample.appspot.com/eval?q=pi

1 个答案:

答案 0 :(得分:0)

您可以将响应内容类型设置为,例如text/plain

...
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('{'+q+'}{'+str(code)+'}')

您可以使用许多不同的格式,例如application/xmlapplication/json