我有这样的结构。
~/app/static/ tree -L 2
.
├── css
│ ├── jquery-ui-1.10.3.custom
│ └── styles.css
├── img
│ └── funny
├── js
│ ├── jquery-ui-1.10.3
│ └── jquery-ui-1.10.3.zip
├── privacy-policy.html
└── tou.html
我想向用户展示一个来自 img/funny 的随机文件。我怎样才能做到这一点?
我可以在模板中放置一个 js 文件的 css,例如:
<script src="{% static "js/jquery-ui-1.10.3/jquery-1.9.1.js" %}"></script>
但我不知道如何从静态目录的子目录中随机选择一个文件?