#后台代码
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文档