Pycharm&的问题Google App Engine渲染请求发布数据

时间:2012-11-26 18:11:22

标签: python google-app-engine

我是一个开发菜鸟的应用程序。我正在使用pycharm编写代码,我将它与谷歌应用引擎相关联,因此我可以使用方便的运行和测试来测试我的代码。 JetBrains提供的调试功能。我在同一目录中有一个名为validation.py的单独文件,其中包含true valid_month,valid_day,valid_year函数。我遇到的问题是这个(我现在很困惑)。这段代码,前面是生成一个显示表单数据的html页面(我认为这与我的get(self)函数被改为write_form有关,因为它不是更早),但即使表单数据是显示,我将输入用户所需的信息页面将操纵数据,如“获取”,并将数据放入URL。现在,使用write_form我甚至没有生成页面我只是得到错误。请记住,我是通过CS253 Udacity Web开发课程这样做的,所以我的代码模仿了类,除了我使用的是webapp而不是webapp2。

以下是代码

from google.appengine.ext import webapp
from google.appengine.ext.webapp import util
from validation import valid_day, valid_month, valid_year

months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
month_abbvs = dict((m[:3], m) for m in months)

def valid_month(user_month):
    return True

def valid_day(user_day):
    return True

def valid_year(user_year):
    return True


form ="""
<form method="post">
    What is your birthday?
    <br>
    <label>Month <input type="text" name="month" value="%(month)s"></label>
    <br>
    <label>Day <input type="text" name="day" value="%(day)s"></label>
    <br>
    <label>Year <input type="text" name="year" value="%(year)s"></label>
    <div style="color:red">%(error)s</div>
    <br>
    <br>
    <input type="submit">
</form>
"""



class OTWHandler(webapp.RequestHandler):

    def write_form(self, error=""):
        self.response.out.write(form % {"error": error})

    def get(self):
        self.write_form()

    def post(self):
        user_month = valid_month(self.request.get('month'))
        user_day = valid_day(self.request.get('day'))
        user_year = valid_year(self.request.get('year'))


        if not (user_month and user_day and user_year):
            self.write_form("Invalid entry")
        else:
            self.response.out.write("That is totally a valid day!")


def main():
    app = webapp.WSGIApplication([('/', OTWHandler)], debug=True)
    util.run_wsgi_app(app)

这是错误

Traceback (most recent call last):
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 1536, in __call__
    rv = self.handle_exception(request, response, e)
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 1530, in __call__
    rv = self.router.dispatch(request, response)
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "C:\Program Files\Google\google_appengine\lib\webapp2\webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "C:\Users\Madrigal\PycharmProjects\OTW\otw.py", line 42, in get
    self.write_form()
  File "C:\Users\Madrigal\PycharmProjects\OTW\otw.py", line 39, in write_form
    self.response.out.write(form % {"error": error})
KeyError: 'month'

非常感谢您的回复。感谢。

2 个答案:

答案 0 :(得分:2)

问题与您传入form字符串的字典有关。如果您查看form,您会看到类似%(month)s的值 - 这意味着form期望传递名为month的参数进入它,它将返回相应的值。现在的问题是你(我假设)向页面发出GET请求,当发生这种情况时,传递给form的值字典只有一个值 - {{ 1}}。因此,当error查找form时,它找不到任何内容并返回KeyError。

这样做的一个简单例子就是:

month

最好将日期参数作为函数的一部分,但希望这个概念有意义 - 对于def write_form(self, error=""): test_date = datetime.date(2012, 11, 26) my_values = { 'month': test_date.month, 'day': test_date.day, 'year': test_date.year, 'error': error } self.response.out.write(form % my_values) 中每个%(something)格式化的字符串,您需要传入相应的键/值参数,以便它知道要加载什么。

答案 1 :(得分:1)

顺便说一句,我已经改变了这一点。我猜之前复制了代码。

def write_form(self, error="", month="", day="", year=""):
   self.response.out.write(form % {"error": error, "month": month, "day": day, "year": year} )