form="""
<textarea>%s</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)