期望的输出:
您目前正在关注 xx 艺术家
假设我在 Django 模板中使用 Pug,如果我不想硬编码 URL(我artists
在我的 URL 中命名)并且艺术家计数也是一个变量,我将如何实现这一点?
我可以做这个:
p You're currently following #{user_artists_count} artists
但是我怎样才能使最后一部分链接到带有名称的 Django URL artists
?
您可以使用以下语法{% url %}
在 pug 模板中使用 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