欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

flask怎樣將html中的參數傳給視圖函數

林子帆2年前20瀏覽0評論

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}}直接操作變量。

css var(),flask怎樣將html中的參數傳給視圖函數