Django项目中使用settings.py内变量的方法
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/29 功能描述:Django项目中使用settings.py内变量的方法 """ from django.conf import settings from django.shortcuts import render def my_view_function(request): context = {'favorite_color': settings.FAVORITE_COLOR} template = 'index.html' response = render(request, template, locals()) return response
以上代码在Python3.9和Django3.0环境下测试通过。
相关文章