本文整理汇总了Python中data.storage.Storage.updateBoard方法的典型用法代码示例。如果您正苦于以下问题:Python Storage.updateBoard方法的具体用法?Python Storage.updateBoard怎么用?Python Storage.updateBoard使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类data.storage.Storage
的用法示例。
在下文中一共展示了Storage.updateBoard方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: updateBoard
# 需要导入模块: from data.storage import Storage [as 别名]
# 或者: from data.storage.Storage import updateBoard [as 别名]
def updateBoard(id,boardName):
print '--in moo.createBoard'
user_id = request.forms.get("id")
bName=request.forms.get("boardName")
print "id", user_id
print "boardName", bName
couch = couchdb.Server()
mydb = couch['userdb']
myboardDB = couch['boards']
#doc = mydb[user_id]
if user_id in mydb:
if bName in myboardDB:
# bname=request.PUT.get('boardName')
# bdesc = request.PUT.get('boardDesc')
# category = request.PUT.get('category')
# boardType = request.PUT.get('isPrivate')
bname = request.POST.get('name')
bdesc = request.POST.get('boardDesc')
category = request.POST.get('category')
boardType = request.POST.get('isPrivate')
print "new board name is ", bname
global storage
storage = Storage()
boardId = storage.updateBoard(user_id,bName, bname, bdesc, category, boardType)
return boardId
else:
return "Board not Authorized!"
else:
return "User not authorized"
示例2: updateBoard
# 需要导入模块: from data.storage import Storage [as 别名]
# 或者: from data.storage.Storage import updateBoard [as 别名]
def updateBoard(userId,boardName):
print '--in moo.createBoard'
global storage
storage = Storage()
couch = couchdb.Server()
mydb = couch['userdb']
myboardDB = couch['boards']
bId = storage.getBoardId(boardName)
if userId in mydb:
if bId in myboardDB:
bname = request.POST.get('name')
bdesc = request.POST.get('boardDesc')
category = request.POST.get('category')
boardType = request.POST.get('isPrivate')
boardId = storage.updateBoard(userId,bId, bname, bdesc, category, boardType)
return boardId
else:
return "Board not Authorized!"
else:
return "User not authorized"