Python - 表单中的文本消失

时间:2014-11-06 00:44:19

标签: python html forms

在下面的代码中,我希望在按下提交按钮时将文本保留在表单中。当前按下提交时文本消失。

以下是我一直关注的教程链接: https://www.udacity.com/course/viewer#!/c-cs253/l-48736183/e-48754026/m-48717294

import webapp2

form = """
<!DOCTYPE html>
    <head>
        <title>Unit 2 Rot 13</title>
    </head>
    <body>
        <h2>Enter some text to ROT13:</h2>
        <form method = "post">
            <textarea name="text" value="%(word)s" style="height: 100px; width: 400px;"></textarea>
            <br>
            <input type="submit">
        </form>
    </body>
</html>

"""

class MainHandler(webapp2.RequestHandler):
    def write_form(self, word=""):
        self.response.out.write(form % {"word": word})

    def get(self):
        self.write_form()

    def post(self):
        string = self.request.get("word")
        self.write_form(string)


app = webapp2.WSGIApplication([('/', MainHandler),
], debug=True)

1 个答案:

答案 0 :(得分:0)

string = self.request.get("text")

因为您的表单项名称为text

这让人回想起你应该使用好的标识符......

因为你没有名为word的帖子变量...试图获得该帖子变量给出一个空字符串