11

我的设置文件有:

DEBUG = True

显而易见的方法:

if DEBUG:
    print 'debug'

似乎不起作用:

global name 'DEBUG' is not defined
4

1 回答 1

28

如评论中所述,您需要执行以下操作:

from django.conf import settings

print(settings.DEBUG)
于 2013-05-20T11:35:31.380 回答