gpt4 book ai didi

static-files - 自定义静态文件夹的 flask 蓝图在使用url_for的模板中不起作用

转载 作者:行者123 更新时间:2023-12-03 17:32:07 27 4
gpt4 key购买 nike

我正在尝试使用一个蓝图从/static文件夹中提供一些js和css文件。我希望这些文件可以从根目录获得。我已经在应用程序中注册了以下蓝图:

custom = Blueprint('/', __name__, static_folder='custom', static_url_path='/custom')
app.register_blueprint(custom)


我可以在预期的位置找到所需的文件,即。通过将此URL直接放入浏览器 /custom/custom.css,但是,我无法使用url_for在模板中访问它们,如下所示:

<link href="{{ url_for('custom', filename='style.css') }}" rel="stylesheet">


我得到: BuildError: ('custom', {'filename': 'style.css'}, None)

我尝试了任意数量的组合,即:

custom = Blueprint('custom', __name__, static_folder='custom', static_url_path='/custom')




<link href="{{ url_for('custom.custom', filename='style.css') }}" rel="stylesheet">


等等,但是没有任何东西对我有用。

最佳答案

您需要使用蓝图的静态端点。

url_for('custom.static', filename='custom.css')

关于static-files - 自定义静态文件夹的 flask 蓝图在使用url_for的模板中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27805136/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com