码迷,mamicode.com
首页 > Web开发 > 详细

Flask--第三个例子,写一个接口,该接口返回html前端页面。

时间:2019-03-14 18:32:23      阅读:482      评论:0      收藏:0      [点我收藏+]

标签: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

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