当前位置:   article > 正文

flask与html进行简单交互第一弹_html调用flask接口

html调用flask接口

#后台代码

from flask import Flask,request,render_template
import json

app = Flask(__name__)


@app.route('/name/',methods=['GET','POST'])
def index_html():
    return render_template('index.html',name='stronger')


if __name__ == '__main__':
    app.run(debug=True)

#前端代码即html码

<docutype charset="utf8">
    <html>
    <title>hello world</title>
    <head>
    </head>
    <body>
    <h1>hello everyone</h1>
    <input>
    <h2>submit</h2>
    </body>
    </html>

#访问生成的地址就可以在网页上显示,即可以通过接口访问到自己写的html文档

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/66529
推荐阅读
相关标签
  

闽ICP备14008679号