本文整理汇总了Python中django.contrib.staticfiles.handlers.StaticFilesHandler方法的典型用法代码示例。如果您正苦于以下问题:Python handlers.StaticFilesHandler方法的具体用法?Python handlers.StaticFilesHandler怎么用?Python handlers.StaticFilesHandler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.contrib.staticfiles.handlers
的用法示例。
在下文中一共展示了handlers.StaticFilesHandler方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_handler
# 需要导入模块: from django.contrib.staticfiles import handlers [as 别名]
# 或者: from django.contrib.staticfiles.handlers import StaticFilesHandler [as 别名]
def get_handler(self, *args, **options):
"""
Returns the static files serving handler wrapping the default handler,
if static files should be served. Otherwise just returns the default
handler.
"""
handler = super(Command, self).get_handler(*args, **options)
use_static_handler = options.get('use_static_handler', True)
insecure_serving = options.get('insecure_serving', False)
if use_static_handler and (settings.DEBUG or insecure_serving):
return StaticFilesHandler(handler)
return handler
示例2: get_handler
# 需要导入模块: from django.contrib.staticfiles import handlers [as 别名]
# 或者: from django.contrib.staticfiles.handlers import StaticFilesHandler [as 别名]
def get_handler(self, *args, **options):
"""
Returns the static files serving handler wrapping the default handler,
if static files should be served. Otherwise just returns the default
handler.
"""
handler = super(Command, self).get_handler(*args, **options)
use_static_handler = options['use_static_handler']
insecure_serving = options['insecure_serving']
if use_static_handler and (settings.DEBUG or insecure_serving):
return StaticFilesHandler(handler)
return handler
示例3: get_handler
# 需要导入模块: from django.contrib.staticfiles import handlers [as 别名]
# 或者: from django.contrib.staticfiles.handlers import StaticFilesHandler [as 别名]
def get_handler(self, *args, **options):
"""
Returns the static files serving handler wrapping the default handler,
if static files should be served. Otherwise just returns the default
handler.
"""
handler = super(Command, self).get_handler(*args, **options)
use_static_handler = options.get('use_static_handler', True)
insecure_serving = options.get('insecure_serving', False)
if use_static_handler and (settings.DEBUG or insecure_serving):
return StaticFilesHandler(handler)
return handler