request.build_absolute_uri()
返回给我url/path/?q1=v1&q2=v2...
但是我需要相同的绝对uri 而没有查询参数q1=v1&q2=v2
答案 0 :(得分:0)
build_absolute_uri
方法有一个可选的location
。如果未提供location
,则使用包含查询字符串的get_full_path()
。您可以将request.path
(不包括查询字符串)作为位置传递。
request.build_absolute_uri(request.path)