我想让我的 GAE 应用程序 webapp2 兼容。这段代码与 webapp 配合得很好:
insert = '<p><font color="red"><b>some text</b></font></p>'
template_values = {
'insert': insert,
...
}
path = ...
self.response.out.write(template.render(path,template_values))
变量insert的内容只是放入webapp输出的网页中。现在,变量的内容由 webapp2 “分析”,并在插入网页时更改内容。
webapp2 插入:
<p><font color="red"><b>some text</b></font></p>
我怎样才能回到旧的行为?
谢谢你的帮助。