flask怎樣將html中的參數傳給視圖函數?
可以向模板(template)傳遞多個參數或者把全部的本地參數傳遞給template:
1. 傳遞多個參數給template,直接將參數放在render_template()函數里面,參數間用逗號隔開:@app.route('/')def index(): content = '.....' user='Micheal' return render_template('index.html', var1=content, var2=user)template中可以直接使用{{var1}}和{{var2}}直接操作變量。
2. 傳遞全部的本地變量給template,使用**locals():@app.route('/')def index(): content = '.....' user='Micheal' return render_template('index.html', **locals())template中可以直接使用{{content}}和{{user}}直接操作變量。
上一篇濾波是什么意思和作用