-
返回
location
的绝对 URI 形式。如果未提供位置,则位置将设置为request.get_full_path()
。如果位置已经是绝对 URI,则不会更改。否则,绝对 URI 将使用此请求中可用的服务器变量构建。例如:
>>> request.build_absolute_uri() 'https://example.com/music/bands/the_beatles/?print=true' >>> request.build_absolute_uri('/bands/') 'https://example.com/bands/' >>> request.build_absolute_uri('https://example2.com/bands/') 'https://example2.com/bands/'
注意
不鼓励在同一个站点上混合使用 HTTP 和 HTTPS,因此
build_absolute_uri()
本文介绍 django.http.HttpRequest.build_absolute_uri
的用法。
声明
HttpRequest.build_absolute_uri(location=None)
相关用法
- Python Django HttpRequest.accepts用法及代码示例
- Python Django HttpRequest.headers用法及代码示例
- Python Django HttpRequest.get_signed_cookie用法及代码示例
- Python Django HttpRequest.user用法及代码示例
- Python Django HttpRequest.method用法及代码示例
- Python Django HttpRequest.__iter__用法及代码示例
- 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.build_absolute_uri。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。