概述
from flask import Flask,render_template app = Flask(__name__) @app.route('/') def hello_world(): context = { 'username' : "zhiliao", 'age': 18, 'country' : "china", 'childrens' : { 'name':"abc", "height":180, } } return render_template('index.html',**context)#context=context这种写法太low了 #如果这里不明白可以看下源码 if __name__ == '__main__': app.run(debug=True)
前端模块渲染
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>标题</title> </head> <body> <h1>文章标题</h1> <h2>{{ username }}</h2> <p>{{ age }}</p> <p>{{ country }}</p> <p>{{ childrens.name }}</p> <p>{{ childrens['height'] }}</p>#这里根据字典键值对取值 </body> </html>
转载于:https://www.cnblogs.com/wuheng-123/p/9671591.html
最后
以上就是贤惠心情为你收集整理的模板传参的全部内容,希望文章能够帮你解决模板传参所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复