标签: django django-templates django-staticfiles
我想访问静态文件夹中的图像 图像名称是动态的。
我正在使用这种语法:
"{% static 'theme/one page base/bgimages/"+num+".jpg' %}"
其中num是在运行时使用javascript计算的随机数。 但它无法正常工作
答案 0 :(得分:0)
通过使用这种语法,它将起作用:
"{% static 'theme/one page base/bgimages/' %}/"+num+".jpg"