Google应用引擎表单不起作用

时间:2015-04-12 04:21:30

标签: python google-app-engine webapp2

我在使用Google App Engine时遇到了麻烦。这一切都已设置好(以及之前的工作时间),当我重新连接引擎时,表单只是停止工作,当我点击提交时,页面进入服务器的页面,没有任何反应。

<!DOCTYPE html> 
<html lang="en"> 
  <body>
    <form action="http://localhost:9080/sub" method="post">
      <input type="email" name="email" placeholder="Email"/>
      <input type="submit" value="Subscribe"/>
    </form>
  </body>
</html>

import webapp2
class SubscribeHandler(webapp2.RequestHandler):
    def post(self):
        self.response.headers['Content-Type'] = 'text/plain'
        email = self.request.get("email")
        if email == '':
            self.response.out.write("no email")
        self.response.out.write(email)
app = webapp2.WSGIApplication([('/sub', SubscribeHandler)], debug=True)

0 个答案:

没有答案