即使它们位于静态文件夹中,我也无法将它们加载到网页上。
我也尝试提供图像的路径,但无法加载
<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)