如何将当前查询字符串添加到Django模板中的URL?

时间:2011-06-23 12:01:39

标签: python django

当我加载页面时,有一个链接“sameLink”,我想在其中附加其包含的 查询字符串 页。

我有以下网址:

somedomain/reporting/article-by-month?variable1=2008

我该怎么做?

7 个答案:

答案 0 :(得分:109)

要捕获作为请求一部分的QUERY_PARAMS,请引用包含这些参数(request.GET)的dict并对其进行urlencode,以便将它们作为href的一部分接受。 request.GET.urlencode返回一个类似于ds=&date_published__year=2008的字符串,您可以将其放入页面上的链接中,如下所示:

<a href="sameLink/?{{ request.GET.urlencode }}">

答案 1 :(得分:14)

如果您注册了如下的模板标签:

@register.simple_tag
def query_transform(request, **kwargs):
    updated = request.GET.copy()
    updated.update(kwargs)
    return updated.urlencode()

您可以修改模板中的查询字符串:

<a href="{% url 'view_name' %}?{% query_transform request a=5 b=6 %}">

这将保留查询字符串中已有的所有内容,只更新您指定的键。

答案 2 :(得分:11)

我发现当你想要更新现有的查询参数时,@ Michael的答案并不常用。

以下对我有用:

@register.simple_tag
def query_transform(request, **kwargs):
    updated = request.GET.copy()
    for k, v in kwargs.iteritems():
        updated[k] = v

    return updated.urlencode()

答案 3 :(得分:2)

继续@Prydie(谢谢!)我想做同样的事情,但是在Python 3&amp; Django 1.10,增加了能够剥离查询字符串键以及修改它们。为此,我用这个:

@register.simple_tag
def query_transform(request, **kwargs):
    updated = request.GET.copy()
    for k, v in kwargs.items():
        if v is not None:
            updated[k] = v
        else:
            updated.pop(k, 0)  # Remove or return 0 - aka, delete safely this key

    return updated.urlencode()

python 3位kwargs.items()超过.iteritems()

答案 4 :(得分:1)

通过其他答案通知但不需要传递request并仅更新现有参数。

@register.simple_tag(takes_context=True)
def querystring(context, **kwargs):
    """
    Creates a URL (containing only the querystring [including "?"]) derived
    from the current URL's querystring, by updating it with the provided
    keyword arguments.

    Example (imagine URL is ``/abc/?gender=male&name=Tim``)::

        {% querystring "name"="Diego" "age"=20 %}
        ?name=Diego&gender=male&age=20
    """
    request = context['request']
    updated = request.GET.copy()
    for k, v in kwargs.items():  # have to iterate over and not use .update as it's a QueryDict not a dict
        updated[k] = v

    return '?{}'.format(updated.urlencode()) if updated else ''

答案 5 :(得分:1)

基于@Prydie的解决方案(本身使用@Michael),我构建了标签以返回完整的URL,而不仅仅是参数字符串。

我的 myproject / template_tags.py

from django import template


register = template.Library()


# https://stackoverflow.com/a/24658162/2689986
@register.simple_tag
def add_query_params(request, **kwargs):
    """
    Takes a request and generates URL with given kwargs as query parameters
    e.g.
    1. {% add_query_params request key=value %} with request.path=='/ask/'
        => '/ask/?key=value'
    2. {% add_query_params request page=2 %} with request.path=='/ask/?key=value'
        => '/ask/?key=value&page=2'
    3. {% add_query_params request page=5 %} with request.path=='/ask/?page=2'
        => '/ask/?page=5'
    """
    updated = request.GET.copy()
    for k, v in kwargs.items():
        updated[k] = v

    return request.build_absolute_uri('?'+updated.urlencode())

我的 settings.py

TEMPLATES = [
    {
        ...
        'OPTIONS': {
            ...
            # loads custom template tags
            'libraries': {
                'mytags': 'config.template_tags',
            }
        },
    },
]
模板中的

示例用法

{% load mytags %}
<a href="{% add_query_params request page=2 %}">

在Django1.11.10中使用Python3.6进行测试

答案 6 :(得分:0)

如果您不希望循环或字符串串联,则只是一种解决方法。

URL的字符串表示类似于'<WSGIRequest: GET \'our_url\'>' 因此,如果您想使用our_url,则只需使用正则表达式即可。

our_url = re.search(r'\/.*(?=\'>)', str(request)).group()