本文整理匯總了Python中models.user.UserModel.update_user方法的典型用法代碼示例。如果您正苦於以下問題:Python UserModel.update_user方法的具體用法?Python UserModel.update_user怎麽用?Python UserModel.update_user使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.user.UserModel
的用法示例。
在下文中一共展示了UserModel.update_user方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: put
# 需要導入模塊: from models.user import UserModel [as 別名]
# 或者: from models.user.UserModel import update_user [as 別名]
def put(self):
args = self.get_json_arguments()
merchant_id, username, department, mobile, authority, is_valid = \
get_and_valid_arguments(
args, 'merchant_id', 'username', 'department', 'mobile', 'authority', 'is_valid')
hotel_id = None
if 'hotel_id' in args:
hotel_id = args['hotel_id']
try:
authority = None
hotel_id = int(hotel_id)
except Exception:
self.finish_json('1', u'不合法的酒店')
return
if 'email' in args:
email = args['email']
else:
email = None
if 'password' in args:
password = args['password']
else:
password = None
if not self.mobile_check(mobile):
self.finish_json(1, u'請填寫正確手機號')
return
if not department:
self.finish_json(1, u'請填寫部門')
return
if self.current_user.merchant_id != merchant_id:
self.finish_json(1, u'您隻能管理自己的酒店')
return
''' 可以管理用戶 '''
UserModel.update_user(self.db, merchant_id, username,
password, department, mobile, email, is_valid, authority, hotel_id)
''' 修改了自己的密碼 '''
if self.current_user.username == username and password:
self.clear_cookie('username')
self.clear_cookie('merchant_id')
self.finish_json(301, self.get_login_url())
return
self.finish_json(0, u'成功')