期望的输出:
假设我在Django模板中使用Pug,如果我不想对URL进行硬编码(我在URL中将其命名为artists
),如果艺术家计数也是变量,我将如何实现?
我可以做这个:
p You're currently following #{user_artists_count} artists
但是如何让最后一部分成为名为artists
的Django URL的链接?
您可以使用以下语法在pug模板中使用{% url %}
django标记。
(我把它放在这里作为参考,过去几个小时都在寻找它。)
p You're currently
- url 'artists' as the_url
a(href=the_url) following #{user_artists_count} artists
资料来源:https://docs.djangoproject.com/en/2.1/ref/templates/builtins/#url