0

我正在使用将变量传递到我的视图中以与url标签一起使用:

{% load url from future %}
...
{% if notification.url %}
  <a href='{% url notification.url %}'>{% notification.text %}</a>
{% endif %}

notification.url设置为类似post,我希望指向的 url 的名称,但是 url 不会像那样反转{% url 'post' %}

我究竟做错了什么?

4

1 回答 1

0

橡胶在写到一半时回避了这一点。

reverse()解决方案是在将其传递给模板之前仅使用url 名称。

于 2013-01-23T16:41:07.907 回答