我正在使用flask编写Web应用程序。我的css脚本访问images文件夹中的文件。我可以将css文件加载到index.html文件中,但是css文件访问的图像(来自images文件夹)不会出现。
为了引用CSS,我使用了以下语句
{{ url_for('static',filename='css/bootstrap.css') }}
是否有任何这样的语句需要用于引用css脚本访问的图像?例如,我需要如何在此代码行中修改url?
background: url(../images/bb.jpg) no-repeat 0px 0px;
这是我遵循的目录层次结构。
Flask App
static
css
style.css
images
bb.jpg
templates
index.html
我已经尝试过了,但是没有用
background: url("{{ url_for('static',filename='images/bb.jpg') }}") no-repeat 0px 0px;