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


Python base.BaseHandler類代碼示例

本文整理匯總了Python中controller.base.BaseHandler的典型用法代碼示例。如果您正苦於以下問題:Python BaseHandler類的具體用法?Python BaseHandler怎麽用?Python BaseHandler使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BaseHandler類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: prepare

 def prepare(self):
     BaseHandler.prepare(self)
     self.error = {
         "passworddiff": "兩次輸入的密碼不相同",
         "usernameused": "用戶已經注冊過啦",
         "shortpassword": "密碼長度不能少於5個字符",
         "invitecode": "邀請碼錯誤或不存在",
         "invoteexpire": "邀請碼過期啦",
         "closed": "網站已關閉注冊",
         "captcha": "驗證碼錯誤",
     }
開發者ID:yangxue088,項目名稱:Minos,代碼行數:11,代碼來源:auth.py

示例2: prepare

	def prepare(self):
		BaseHandler.prepare(self)
開發者ID:joeyxy,項目名稱:Minos,代碼行數:2,代碼來源:open.py

示例3: initialize

	def initialize(self):
		BaseHandler.initialize(self)
		self.topbar = ""
開發者ID:joeyxy,項目名稱:Minos,代碼行數:3,代碼來源:open.py

示例4: initialize

 def initialize(self):
     BaseHandler.initialize(self)
     self.topbar = 'register'
開發者ID:yangxue088,項目名稱:Minos,代碼行數:3,代碼來源:auth.py

示例5: prepare

 def prepare(self):
     BaseHandler.prepare(self)
     self.error = {
         "usernameused": "用戶已經注冊過啦",
     }
開發者ID:resec,項目名稱:superhero,代碼行數:5,代碼來源:auth.py

示例6: initialize

 def initialize(self):
     BaseHandler.initialize(self)
開發者ID:Nightsuki,項目名稱:QvQDNS,代碼行數:2,代碼來源:user.py


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