码迷,mamicode.com
首页 > 其他好文 > 详细

flask之后端传值给前端

时间:2019-12-30 09:53:38      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:and   return   def   ret   variable   前端   turn   erro   name   

服务端代码:

from flask import Flask, request, render_template

app = Flask(__name__)


@app.route('/')
def index():
    variable={"name": "张三"}
    return render_template("index.html", variable=variable)


@app.errorhandler(404)
def miss(e):
    return render_template('404.html'), 404


@app.errorhandler(500)
def error(e):
    return render_template('500.html'), 500


if __name__ == '__main__':
    app.run(host='0.0.0.0', port=5002, debug=True)

html页面使用

        <p>{{variable.name}}</p>

flask之后端传值给前端

标签:and   return   def   ret   variable   前端   turn   erro   name   

原文地址:https://www.cnblogs.com/c-x-a/p/12117345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!