我想在 django 的模板中使用名为“files”的变量的内容。我的views.py 看起来像这样:
from django.shortcuts import render
import os
def index(request):
os.chdir("/home/ubuntu/newproject/static")
for files in os.listdir("."):
return render(request, 'sslcert/index.html','files')
我的名为“index.html”的模板如下所示:
<head>
{% block title %}
<h3>
Following directories are in this folder:
</h3>
{% endblock %}
</head>
<body>
<<(HERE SHOULD BE THE OUTCOME OF THE VARIABLE LIST)>>
</body>
帮助真的很酷,解释也很酷:/我是 django 的真正初学者,我想知道这个模板和视图的东西是如何连接的 :) 如果这个问题真的很愚蠢,请不要讨厌我 :(