如題
參考 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呢 ? 謝謝。