我需要帮助=)
静态文件夹中的图片无法加载。
版本:Django 1.11.3
这是我的代码:
first_project / first_project / settings.py:
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR=os.path.join(BASE_DIR,"templates")
STATIC_DIR=os.path.join(BASE_DIR,"static")
...
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'first_app',
]
...
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS=[
STATIC_DIR,
os.path.join(BASE_DIR,"first_app","static","first_app"),
]
first_project / templates / first_app / index.html:
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Yp</title>
</head>
<body>
<h1>This is yp picture!</h1>
<!--It works -->
<img src="/static/first_app/yp.jpg" alt="oh oh">
<!--It doesn't work-->
<img scr="{% static "first_app/yp.jpg" %}" alt="oh oh">
</body>
</html>
first_project / static / first_app / yp.jpg-图像的路径。
谢谢!
答案 0 :(得分:1)
您应该做几件事,但我认为您不应该做 做到这一点。
我创建一个简单的项目仅供您,并添加到我的GitHub
只需单击以下链接:GitHub first Project templates
如果有帮助,请投票。
答案 1 :(得分:1)
首先,您编写的是scr,而不是src,这应该得到纠正。
www.test.com
在那之后,您可能需要从代码中清除“ first_app /”部分,因为您直接在设置文件中访问目录。