Django Static文件夹访问问题

时间:2013-11-11 08:14:50

标签: django django-templates django-staticfiles

我想访问静态文件夹中的图像 图像名称是动态的。

我正在使用这种语法:

"{% static 'theme/one page base/bgimages/"+num+".jpg' %}"

其中num是在运行时使用javascript计算的随机数。 但它无法正常工作

1 个答案:

答案 0 :(得分:0)

通过使用这种语法,它将起作用:

"{% static 'theme/one page base/bgimages/' %}/"+num+".jpg"