谢谢老师, 我前面没说清楚..
在6.2里,
用context时,
def template():
context['num_list'] = [1,2,3,4,5]
return render_template("index.htlm", **context)
在index.html,
<p>
{% for tmp_num in num_list %}
{{ tmp_ num }}
{% endfor %}
</p>
我的问题是, 为什么key 用 'num_list',
而不是context[num_list] = [1,2,3,4,5] 呢?
我试了,只能是用'num_list',
是不是要用字典形式传参数, 变量需要加个 引号?
谢谢