コード例 #1
0
 def GET(self):
     input = web.input()
     id = int(input.order)
     model.order_drink(id)
コード例 #2
0
ファイル: code.py プロジェクト: AlfiyaZi/Grab-Bag
 def GET(self):
 	input = web.input()
     id = int(input.order)
     model.order_drink(id)
コード例 #3
0
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')
コード例 #4
0
ファイル: code.py プロジェクト: AlfiyaZi/Grab-Bag
 def POST(self, id):
     id = int(id)
     model.order_drink(id)
     raise web.seeother('/drinks')