flask在哪里寻找图像文件?
我正在使用flask设置本地服务器。我目前要做的就是使用index.html页面中的img标签显示图像。但是我总是出错
GET http://localhost:5000/ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg 404 (NOT FOUND)
flask在哪里寻找文件?一点帮助将是巨大的。我的HTML代码是
<html> <head>
</head>
<body>
<h1>Hi Lionel Messi</h1>
<img src= "ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg ">
</body>
</html>
我的python代码是:
@app.route('/index', methods=['GET', 'POST'])def lionel():
return app.send_static_file('index.html')
回答:
图像文件是否在目录中ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg static
?如果将其移至静态目录并按如下方式更新HTML:
<img src="/static/ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg">
它应该工作。
另外,值得注意的是,有一种更好的方法来构造它。
文件结构:
app.pystatic
|----ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg
templates
|----index.html
app.py
from flask import Flask, render_template, url_for
app = Flask(__name__)
@app.route('/index', methods=['GET', 'POST'])
def lionel():
return render_template('index.html')
if __name__ == '__main__':
app.run()
templates / index.html
<html> <head>
</head>
<body>
<h1>Hi Lionel Messi</h1>
<img src="{{url_for('static', filename='ayrton_senna_movie_wallpaper_by_bashgfx-d4cm6x6.jpg')}}" />
</body>
</html>
这样可以确保你不会对静态资产的URL路径进行硬编码。
以上是 flask在哪里寻找图像文件? 的全部内容, 来源链接: utcz.com/qa/422235.html