html的代码都是对的
但是django网页加载不出图片
这里来给大家演示一下,因为setting.py少了东西,无法查找图片路径
STATICFILES_DIRS=(
os.path.join(BASE_DIR,'static'),
)
补上这个代码
html插入图片很简单,我这里就举个栗子
{% load static %}
<body background="{% static 'imges/bg.png' %}"></body>
运行一下
ok,nice!
喜欢的点个赞哦!