HttpRequest對象包含當前請求URL的一些信息: spa
屬性/方法 | 說明 | 舉例 |
---|---|---|
request.path | 除域名之外的請求路徑,以正斜槓開頭 | "/hello/" |
request.get_host() | 主機名(好比,一般所說的域名) | "127.0.0.1:8000" or "www.example.com" |
request.get_full_path() | 請求路徑,可能包含查詢字符串 | "/hello/?print=true" |
request.is_secure() | 若是經過HTTPS訪問,則此方法返回True, 不然返回False | True 或者 False |