介紹: 用於存放當前對象實例所屬的類型,值是:<class 'flask.app.Flask'>
。**注意在未修改__class__的狀況下,type(A)=A.class
shell
介紹: 用於存放當前對象的全部屬性。其內容是本文數據字典的子集。
json
介紹: 保存類的文檔字符串。能夠經過help函數或者inspect.getdoc(Class)
得到。
flask
介紹: 類所屬的模塊。
cookie
介紹:
session
介紹:
app
介紹:
ssh
介紹:
ide
介紹:
函數
介紹:
ui
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:
介紹:刪除屬性attr;內建函數self.delattr(attr)時被調用。
介紹: 格式化字符串的輸出.
介紹: 訪問Flask的屬性時調用該函數。老是被調用。
介紹: 散列函數值,調用該方法能夠獲得對象的7位哈希數字。
介紹: 靜態方法,用於建立類實例;它在__init__以前被調用。
介紹: 沒找到介紹。
介紹: 沒找到介紹
介紹: 設置屬性attr;內建函數self.setattr(self,attr,val)的調用;
介紹: 沒找到介紹
介紹: :當前對象被字符串化時被調用;內建函數str(self)函數,或print(self)的調用;
介紹: 沒找到介紹
介紹: 沒找到介紹
參數: endpoint,values
介紹:
介紹:
參數: blueprint,**options
介紹:
參數: context
介紹:
參數: f,name=None
介紹:
介紹:
介紹:
參數: request
介紹:
介紹:
參數: request
介紹:
參數: f
介紹:
參數: error
介紹:
參數: import_name, static_path = None, static_url_path = None,static_folder = 'static', template_folder = 'templates',instance_path = None, instance_relative_config = False,root_path = None
介紹:
介紹:
參數: args,*kwargs
介紹:
參數: f
介紹:
參數: instance_relative=False
介紹:
介紹:
參數: f
介紹:
參數: e
介紹:
參數: f
介紹:
參數: filename
介紹:
參數: environ,start_response
介紹:
參數: e
介紹:
參數: use_cookies=True,**kwargs
介紹:
介紹:
參數: environ,start_response
介紹:
參數: exc=_sentinel
介紹:
介紹:
參數: f,name=None
介紹:
參數: name=None
介紹:
參數: f
介紹:
參數: response
介紹:
參數: host=None,port=None,debug=None,**options
介紹:
參數: name=None
介紹:
參數: error,endpoint,values
介紹:
參數: exc=_sentinel
介紹:
參數: exc_class_or_code
介紹:
介紹:
參數: code_or_exception
介紹:
參數: exc_info
介紹:
參數: f
介紹:
介紹:
參數: f
介紹:
參數: code_or_exception,f
介紹:
參數: request
介紹:
介紹:
介紹:
參數: e
介紹:
參數: rv,from_error_handler=False
介紹:
參數: session,response
介紹:
參數: endpoint
介紹:
介紹:
介紹:
參數: key,code_or_exception,f
介紹:
介紹:
參數: rule,endpoint=None,view_func=None,**options
介紹:
參數: rule,**options
介紹:
參數: resource,mode='rb'
介紹:
參數: e
介紹:
介紹:
介紹:
介紹:
參數: name=None
介紹:
介紹:
參數: rv
介紹:
參數: environ
介紹:
介紹:
參數: f,name=None
介紹:
參數: f
介紹:
參數: f
介紹:
參數: e
介紹:
方法類型介紹:
@classmethod means: when this method is called, we pass the class as the first argument instead of the instance of that class (as we normally do with methods). This means you can use the class and its properties inside that method rather than a particular instance. @staticmethod means: when this method is called, we don't pass an instance of the class to it (as we normally do with methods). This means you can put a function inside a class but you can't access the instance of that class (this is useful when your method does not use the instance).