我是Google App引擎的初学者。执行一个带有用户查询和打印响应的项目。我用self.response.write('<code>{'+q+'}{'+str(code)+'}</code>')
这种方式来打印我的回复,当我读到它时,它就像<code>{pi}{3.14159265359}</code>
。我需要响应应该以格式显示,但标签不应该响应。怎么做。
答案 0 :(得分:0)
您可以将响应内容类型设置为,例如text/plain
:
...
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('{'+q+'}{'+str(code)+'}')
您可以使用许多不同的格式,例如application/xml
或application/json
。