我想动态生成类似这样的链接:
<a href="{% url 'my_app.views.page1' %}">
我想要的视图变量包含在上下文变量nextURL
中。所以我创建了一个如下所示的声明:
<a href="{% url '{{ nextURL }}' %}">
但这导致了这个错误:
Reverse for '{{ nextURL }}' with arguments '()' and keyword arguments '{}' not found.
取出{{ nextURL }}
周围的引号会产生类似的结果。有没有办法做到这一点?我不想硬编码链接到视图。
答案 0 :(得分:3)
只是<a href="{% url nextURL %}">
。