标签:coding dex index eth title app odi read head
1 @app.route(‘/index‘,methods=[‘get‘]) 2 def open_index(): 3 page=open(‘my_index.html‘,encoding=‘utf-8‘);——---->打开当前文件下的my_index.html(这个html是你自己写的) 4 res=page.read()------>读取页面内容,并返回 5 return res;
我的html页面内容如下
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>这是我的主页</title> 6 </head> 7 <body> 8 这是我的主页 9 10 11 </body> 12 </html>
Flask--第三个例子,写一个接口,该接口返回html前端页面。
标签:coding dex index eth title app odi read head
原文地址:https://www.cnblogs.com/shenyexiaoqingxin/p/10531831.html