使用模板获取参数
1、使用视图函数传递参数
@app.route('/')
def index():
article = {
'title': '文章标题',
'time': '2022-11-30',
'content': '文章内容',
'share': {
'baidu': '百度',
'google': '谷歌'
}
}
return render_template('index.html', **article)
2、使用模板获取参数
{{ title }}
{{ time }}
{{ content }}
{{ share.baidu }}
{{ share.google }}