-2
これらの変数へのアクセス方法。 これはおそらくかなり簡単ですが、私は今日は考えていません。変数アクセス、取得、および投稿
class Contact(webapp.RequestHandler):
def get(self):
self.a = random.randint(1,4)
self.b = random.randint(0,4)
template_values = {
'a': self.a,
'b': self.b
}
path = os.path.join(os.path.dirname(__file__), 'contact.html')
self.response.out.write(template.render(path, template_values))
def post(self):
self.response.out.write(self.a)
self.response.out.write(self.b)
トラックバック:
Traceback (most recent call last):
File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\__init__.py", line 702, in __call__
handler.post(*groups)
File "D:\My Dropbox\project\main.py", line 133, in post
self.response.out.write(self.a)
AttributeError: 'Contact' object has no attribute 'a'
エラーはどこで発生しますか? 'post'では?あなたはここで何をしようとしていますか? –
投稿では、単純な数学のcaptcha –
私たちは完全な痕跡を見るのが好きです。 –