示例#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')