Flask不会使用url_for()加载CSS

时间:2019-04-04 13:01:25

标签: flask

我正在编写一个需要CSS的Flask Web应用程序。我认为我使用了正确的语法。

我的Web应用程序刚刚开始,而CSS也很简单。我不知道为什么烧瓶无法加载CSS。

我用于将CSS链接到html文件的代码

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

image contains file structure, code and localhost browser image

1 个答案:

答案 0 :(得分:0)

您在尝试获取<link rel="stylesheet" href="{{url_for('static', filename='/static/style.css')}}"> 时遇到HTTP 404错误。您在这里的问题中正确地找到了这一行,但是在Jinja模板(在屏幕截图中)中,其内容为:

/static/

filename中添加了<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}"> 。删除并使其可读

{{1}}