我正在使用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