當前位置: 首頁>>代碼示例>>Python>>正文


Python UserModel.update_user方法代碼示例

本文整理匯總了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'成功')
開發者ID:icyCloud,項目名稱:test_e_b_k,代碼行數:51,代碼來源:user.py


注:本文中的models.user.UserModel.update_user方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。