как добраться до этих переменных.
Это, наверное, довольно легко, но я не думаю, что сегодня.
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)
Trackback:
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'