我的网页正在使用Flask服务器加载图像

时间:2019-07-03 05:54:54

标签: html image flask server

即使它们位于静态文件夹中,我也无法将它们加载到网页上。

我也尝试提供图像的路径,但无法加载

<img class="w3-image" src="{{ url_for('static', filename='architect.jpg') }}" alt="Architecture" width="1500" height="800">

python代码:

from flask import Flask,render_template
app = Flask(__name__)

@app.route('/')

def hello_name():
    return render_template('index.html')

if __name__ == '__main__':
    app.run(debug=True)

0 个答案:

没有答案