将上下文变量传递给URL参数

时间:2013-03-29 23:02:52

标签: python django

我想动态生成类似这样的链接:

<a href="{% url 'my_app.views.page1' %}">

我想要的视图变量包含在上下文变量nextURL中。所以我创建了一个如下所示的声明:

<a href="{% url '{{ nextURL }}' %}">

但这导致了这个错误:

Reverse for '{{ nextURL }}' with arguments '()' and keyword arguments '{}' not found.

取出{{ nextURL }}周围的引号会产生类似的结果。有没有办法做到这一点?我不想硬编码链接到视图。

1 个答案:

答案 0 :(得分:3)

只是<a href="{% url nextURL %}">