我有一个 html 文件,它引用这样的静态对象
<img src="img/snacks.png">
<link href="css/bluestrap.css" rel="stylesheet">
因此,浏览器尝试通过调用它而烧瓶未能这样做
http://127.0.0.1:5000/img/snacks.png
跨多个文件有很多这样的引用,因此无法更改引用。我如何从 FLASK 提供这些静态文件
我已将所有这些静态文件复制到“静态”文件夹并尝试了这个
@app.route('/<path:filename>')
def send_file(filename):
return send_from_directory('/static', filename)
但是这不起作用,有没有其他方法可以做到这一点?或者我做错了什么?