我正在尝试对html / javascript模板进行一些字符串替换,但是当页面字符串变量在代码中有一个大括号时,我得到错误“ValueError:unsupported format character'}'(0x7d)” 。如果我没有任何字符串替换,一切正常。谢谢你的阅读!
import webapp2
page = """
<html>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map_canvas { height: 100% }
</style>
%(say)s
</html>
"""
class MainHandler(webapp2.RequestHandler):
def write_form(self, say):
self.response.out.write(page % { "say": say })
def get(self):
self.write_form("hello")
app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)
答案 0 :(得分:4)
你的'模板'包含字符串% }
(在100
之后),python将其解释为格式化指令。
将%
%的字符加倍到%%
并且它会起作用。
>>> page = """
... <html>
... <style type="text/css">
... html { height: 100%% }
... body { height: 100%%; margin: 0; padding: 0 }
... #map_canvas { height: 100%% }
... </style>
... %(say)s
... </html>
... """
>>> page % dict(say='foo')
'\n<html>\n <style type="text/css">\n html { height: 100% }\n body { height: 100%; margin: 0; padding: 0 }\n #map_canvas { height: 100% }\n </style>\n foo\n</html>\n '
或者,使用较新的.format()
method作为不太容易出现此类问题的格式,尽管在这种特殊情况下会挂在{ height: 100% }
花括号对上,所以你的里程可能很好变化;你必须将它们加倍(所以{{ height: 100% }}
)。