如题
参考 http://flask123.qiniudn.com/Flask_Web_Development_201404.pdf
Chapter 3 的 Control Structures
{% macro render_comment(comment) %}
<li>{{ comment }}</li>
{% endmacro %}
<ul>
{% for comment in comments %}
{{ render_comment(comment) }}
{% endfor %}
</ul>
请问这在说什么阿....短短几个字,网络上的资料不是一样的叙述,不然就是只是英翻
中,照样抄过来,请问有大大知道 render_comment如何用? 还有macro呢 ? 谢谢。