form="""
<textarea>%s</textarea>
"""
我正在尝试使用 textarea 输入发出帖子请求,并再次在 textarea 中显示帖子输入,我能够做到这一点。
但是,我的问题是,当我第一次去查看页面时,我在 textarea 框中看到了%s 。如何隐藏%s?我正在使用旧的python,我认为它是2.7
form="""
<form method="post">
<textarea name="text">%s</textarea>
<br>
<input type="submit">
</form>
"""
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.write(form)
def post(self):
foo="posted to the box"
self.response.write(form %foo)
app = webapp2.WSGIApplication([('/', MainPage)], debug=True)