django如何显示我的用户目录

时间:2016-09-12 05:28:29

标签: django

我正在使用linux并创建了一个Django项目。

我的主目录/ home / simha / siteimages

中有文件夹

我正在尝试显示上述目录中的图像列表

在views.py

def gallery(request):
    path="/home/simha/siteimages"
    img_list =os.listdir(path)
    return render(request,'blog/gallery.html', {'images': img_list})

gallery.html是

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
{% for image in images %}
<img src='/static/{{image}}' />
{% endfor %}
</body>
</html>

它不起作用。

它表示img_list =os.listdir(path)错误No such file or directory

0 个答案:

没有答案