admin 管理员组文章数量: 887007
Flask成长笔记
我想在Flask中读取日志的文本文件,然后将读取的信息显示到网页上去形成一个管理的网页。真的是为了解决这个问题,要了半条命啊!特意记下了。
参考:
一、设置根目录
我在工程项目中有一个专门的configure.py,用于写全局的配置。
我的文本文件在工程目录的static/txt中
#encoding: utf-8import os# __file__ refers to the file settings.py
APP_ROOT = os.path.dirname(os.path.abspath(__file__)) # refers to application_top
APP_STATIC_TXT = os.path.join(APP_ROOT, 'static/txt') #设置一个专门的类似全局变量的东西
二、在需要的地方调用
#encoding: utf-8from flask import render_template,session, redirect,request
from flask import url_for
import os
from config import APP_STATIC_TXT#这里测试一下读文本文件输出
@main.route('/monitor_test', methods=['GET', 'POST'])
def monitor_test():with open(os.path.join(APP_STATIC_TXT, 'text.txt')) as f:s=f.read(5) #读取前五个字节f.close()return 'ok'+str(s)
nice!输出成功!
本文标签: Flask成长笔记
版权声明:本文标题:Flask成长笔记 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732353844h1533869.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论