-
一個不區分大小寫的 dict-like 對象,它提供對請求中所有 HTTP-prefixed 標頭(加上
Content-Length
和Content-Type
)的訪問。每個標題的名稱在顯示時使用 title-casing (例如
User-Agent
)進行樣式化。您可以訪問標題大小寫敏感ly:>>> request.headers {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6', ...} >>> 'User-Agent' in request.headers True >>> 'user-agent' in request.headers True >>> request.headers['User-Agent'] Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) >>> request.headers['user-agent'] Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) >>> request.headers.get('User-Agent') Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) >>> request.headers.get('user-agent') Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
例如,在 Django 模板中使用時,也可以使用下劃線代替連字符來查找標題:
{{ request.headers.user_agent }}
本文介紹 django.http.HttpRequest.headers
的用法。
聲明
HttpRequest.headers
相關用法
- Python Django HttpRequest.accepts用法及代碼示例
- Python Django HttpRequest.get_signed_cookie用法及代碼示例
- Python Django HttpRequest.user用法及代碼示例
- Python Django HttpRequest.method用法及代碼示例
- Python Django HttpRequest.__iter__用法及代碼示例
- Python Django HttpRequest.build_absolute_uri用法及代碼示例
- Python Django Http404用法及代碼示例
- Python calendar HTMLCalendar formatmonth()用法及代碼示例
- Python HTMLCalendar formatyearpage()用法及代碼示例
- Python calendar HTMLCalendar formatyear()用法及代碼示例
- Python HTMLCalendar formatyear()用法及代碼示例
- Python HTMLCalendar formatmonth()用法及代碼示例
- Python HTML轉Markdown用法及代碼示例
- Python calendar HTMLCalendar formatyearpage()用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python torch.distributed.rpc.rpc_async用法及代碼示例
- Python torch.nn.InstanceNorm3d用法及代碼示例
- Python sklearn.cluster.MiniBatchKMeans用法及代碼示例
- Python pandas.arrays.IntervalArray.is_empty用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python numpy.less()用法及代碼示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python Django File.save用法及代碼示例
- Python Sympy Permutation.list()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.http.HttpRequest.headers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。