我知道我们使用 {{ }} 字符作为变量,但我想在 {} 字符之间显示我的数据
我想像这样展示 11 月{12}。所以我所做的是:
<ul>
{% for month in archive %}
<li><a href="?{{month.date|date:"Y-m"}}">{{month.date|date:"F Y"}}{{{month.count}}}</a></li>
{% endfor %}
</ul>
但我得到了这样的错误:
无法解析余数:来自“{month.count”的“{month.count”
如何在模板中使用 { 字符?