这是我的行业.html
{% extends 'layout.html' %}
{% block body %}
<h1>Sectors Performance</h1>
<p>
<img src="../plot.png" width="1000" height="800" alt="graph">
</p>
{% endblock %}
当我基本上独立运行时,将加载图像。但是,当我在整个Flask应用程序中运行它时,图像不会显示。我也尝试过将plot.png与扇区.html文件放在同一文件夹中,但是在运行整个应用程序时无法加载,但是如果扇区.html单独运行则可以加载。我很困惑。
目录布局:
App_Name
- templates (folder)
- css (folder)
- includes (folder)
- js (folder)
- sectors.html
- other .html files
app.py
plot.png
sectors.py
other .py files
谢谢