我需要从python中的设置中获取变量:
SESSION_COOKIE_AGE = 4500
并在javascript(js)中使用它。
我发现了这个:https://chriskief.com/2013/09/19/access-django-constants-from-settings-py-in-a-template/
但是,这是唯一的方法吗?
答案 0 :(得分:0)
我导入了请求:
import requests
并将其发送到模板:
dictionary = {"session_cookie_age": SESSION_COOKIE_AGE}
return render(request, dictionary, "yourtemplate.html")