代码之家  ›  专栏  ›  技术社区  ›  Homunculus Reticulli

如何将url参数传递给模板中的url标记

  •  1
  • Homunculus Reticulli  · 技术社区  · 4 年前

    我正在使用Django 3.1

    我配置了URL,以便在模板中正确使用以下内容:

    <li><a href="{% url 'sitemember:profile' 'bobby' %}">{{ user.username }}&nbsp;&nbsp;</a></li>
    

    用户。用户名解析为“bobby”

    如何传递变量 user.username url() 标记,以便URL正确解析为:

    https://localhost:/user/bobby(举个例子)

    1 回复  |  直到 4 年前
        1
  •  2
  •   willeM_ Van Onsem    4 年前

    您可以在 {% url … %} template tag [Django-doc] :

    <a href="{% url 'sitemember:profile' user.username %}">