示例#1
0
 def GET(self, serverID, selectType, playerValue):
     print(serverID)
     print(selectType)
     print(playerValue)
     playerListCursor = model.get_PlayerInfo(selectType, playerValue,
                                             serverID)
     return render.mailPlayerList(serverID, playerListCursor)
示例#2
0
文件: GMWeb.py 项目: songjundev/b
 def GET(self, selectType, playerValue, serverID):
     print selectType
     print serverID
     print playerValue
     playerInfo = model.get_PlayerInfo(selectType, playerValue, serverID)
     print playerInfo
     return render.formationInfo(playerInfo, selectType, playerValue, serverID)
示例#3
0
 def GET(self, selectType, playerValue, serverID):
     print selectType
     print serverID
     print playerValue
     playerInfo = model.get_PlayerInfo(selectType, playerValue, serverID)
     print playerInfo
     return render.PlayerInfo(playerInfo, selectType, playerValue, serverID)
示例#4
0
文件: GMWeb.py 项目: songjundev/b
 def GET(self, serverID, selectType, playerValue):
     print(serverID)
     print(selectType)
     print(playerValue)
     playerListCursor = model.get_PlayerInfo(selectType, playerValue, serverID)
     return render.mailPlayerList(serverID, playerListCursor)