我想在我的网站上显示图像。我一直在查看 Django 文档和 stackoverflow 上的其他帖子,但我还没有让它工作。
我有一个图像名称“under-construction.jpg”。它位于/home/di/mysite/myapp/static/images
目录中。
我有一个这样的模板:
<img src="{{ STATIC_URL }}images/under_construction.jpg" alt="Hi!" />
在我的views.py中我有这个:
def under_construction(request):
return render(request, 'under_construction.html')
在我的 settings.py 中,我有这个:
STATIC_ROOT = ''
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
'/home/di/mysite/myapp/static',
'/home/di/mysite/myapp/static/images',
)
我执行./manage.py collectstatic
了,它把很多文件放在/home/di/mysite/admin
和/home/di/mysite/images
. 我该怎么做才能显示我的图像?