我想在index.html
中显示'yyy'
,但当我运行服务器时,页面正常显示,但'yyy'
不可见。
view.py
def index(request):
a1='yyy'
return render(request, "index.html", a1)
index.html
我想在index.html
中显示'yyy'
。但当我运行服务器时,页面显示正常,但'yyy'
不可见。
当我跑步时:
python manage.py runserver
我没有看到任何错误。
1条答案
按热度按时间7ajki6be1#
试试这个
你需要从视图中将dict传入模板。
https://docs.djangoproject.com/en/4.2/ref/templates/api/#django.template.Context
在模板中