- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
错误(运行django runserver命令时):
ImproperlyConfigured: The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting
我并没有真正使用 django static(这主要是和 api 服务器),我只是想让 django debug 来调试和解释
我的 sql 查询。所以我所拥有的是:
STATIC_DIRECTORY = '/'
MEDIA_DIRECTORY = '/media/'
STATIC_URL = S3_URL + STATIC_DIRECTORY
MEDIA_URL = S3_URL + MEDIA_DIRECTORY
STATICFILES_STORAGE = 'server.s3utils.StaticRootS3BotoStorage'
DEFAULT_FILE_STORAGE = 'server.s3utils.MediaRootS3BotoStorage'
STATIC_ROOT = 'staticfiles'
STATICFILES_DIRS = (
abs_path('staticfiles'),
# ABS_PATH('/static/'), #D either
)oesn't work either
)
编辑:如果我只是删除 STATICFILES_DIRS
,错误会更改:
TypeError at /admin/ Error when calling the metaclass bases function() argument 1 must be code, not str Request Method: GET Request URL: http://localhost:8000/admin/ Django Version: 1.6.2 Exception Type: TypeError Exception Value: Error when calling the metaclass bases function() argument 1 must be code, not str
我也尝试作为建议添加的答案之一
if settings.DEBUG:
import debug_toolbar
urlpatterns += patterns('',
url(r'^__debug__/', include(debug_toolbar.urls)),
)
没用..
我想我遗漏了一些非常简单(但很烦人)的东西,我很乐意为此提供帮助。
最佳答案
Django 调试工具栏在使用 S3BotoStorage 时卡住。我主要想要 SQL 日志记录,因此将此代码添加到 settings.py 以禁用 StaticFilesPanel 对我来说是一种解决方法:
DEBUG_TOOLBAR_PANELS = [
'debug_toolbar.panels.versions.VersionsPanel',
'debug_toolbar.panels.timer.TimerPanel',
'debug_toolbar.panels.settings.SettingsPanel',
'debug_toolbar.panels.headers.HeadersPanel',
'debug_toolbar.panels.request.RequestPanel',
'debug_toolbar.panels.sql.SQLPanel',
# 'debug_toolbar.panels.staticfiles.StaticFilesPanel',
'debug_toolbar.panels.templates.TemplatesPanel',
'debug_toolbar.panels.cache.CachePanel',
'debug_toolbar.panels.signals.SignalsPanel',
'debug_toolbar.panels.logging.LoggingPanel',
'debug_toolbar.panels.redirects.RedirectsPanel',
]
关于python - Django 调试工具栏 - 无法使其工作(配置不当 : The STATICFILES_DIRS . ..),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21881749/
我正在编写一个 native iOS 7 应用程序,需要从 JSON api(由我控制)检索数据。 JSON 输出示例如下: { "id" : "544", "name" : "1900 Green
我是一名优秀的程序员,十分优秀!