【发布时间】:2016-03-24 16:39:01
【问题描述】:
我正在使用 Flask 实现一个应用程序,并试图显示我放在日志目录中的文本文件的内容。所以我这样做了:
@app.route('/files', methods = ['GET'])
def config():
if 'username' in session :
path = os.path.expanduser(u'~/path/to/log/')
return render_template('files.html', tree=make_tree(path))
else:
return redirect(url_for('login'))
def make_tree(path):
tree = dict(name=os.path.basename(path), children=[])
try: lst = os.listdir(path)
except OSError:
pass #ignore errors
else:
for name in lst:
fn = os.path.join(path, name)
if os.path.isdir(fn):
tree['children'].append(make_tree(fn))
else:
tree['children'].append(dict(name=name))
return tree
在我的html页面files.html中:
<title>Path: {{ tree.name }}</title>
<h1>{{ tree.name }}</h1>
<div class="accordion-heading" >
<div class="accordion-toggle" >
<a data-toggle="collapse" data-target="#files_list" href="#files_list">
<b>
<ul>
{%- for item in tree.children recursive %}
<div class="well well-sm"> <li>{{ item.name }} </div>
{%- if item.children -%}
<ul>{{ loop(item.children) }}</ul>
{%- endif %}</li>
{%- endfor %}
</ul>
</b></div>
</a>
</div>
这只会显示我的日志目录中的文件名,但我无法显示文件的内容。 我想也许我可以使用类似的东西:
import fnmatch
def display_files():
for dirpath, dirs, files in os.walk('log'):
for filename in fnmatch.filter(files, '*.*'):
with open(os.path.join(dirpath, filename)) as f:
file_contents = f.read().strip()
print file_contents
return render_template('files.html',title="index",file_contents=file_contents)
有什么帮助吗??
【问题讨论】:
-
您需要将file_contents 存储在数组或字典中。您正在遍历所有文件内容并重新分配 file_contents 变量。传递给您的模板的所有内容都是最后一个 file_contents。所以要么追加到数组或添加到字典。然后你可以在你的模板中循环它。
标签: python flask directory-structure static-files