这是我的settings.py
STATIC_URL = '/static/'
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
我的结构是:
manage.py
myproject
-- __init__.py
-- settings.py
-- urls.py
-- wsgi.py
-- static
----- css
----- img
-------- logo.png
----- scripts
我在我的html文件中使用静态标记,如下所示:<img src="{{ STATIC_URL }}img/logo.png">
但是,它是:
[Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error) (logo.png, line 0)
我真的无法理解Django 1.6.2版本的这个问题。
有人可以帮我解决这个问题吗?
提前致谢!
答案 0 :(得分:0)
您需要确保django.contrib.staticfiles
中列出INSTALLED_APPS
应用:
INSTALLED_APPS = (
...
'django.contrib.staticfiles'
...
)
最后,您需要确保DEBUG
中的True
设置为settings.py
。
修改强>
尝试从'django.contrib.staticfiles.finders.DefaultStorageFinder'
删除STATICFILES_FINDERS
。然后运行$ python manage.py findstatic img/logo.png