为什么我的 sublimetxt3 在加载静态图像时出错?
Why is my sublimetxt3 giving error while loading static images?
{% load staticfiles %}
<html>
<head>
<title>DJANGO PAGE</title>
</head>
<body>
<H1>Hello this is index.html</H1>
<h1>Hi this contains an image also</h1>
<img src="{% static "images/abc.jpg" %}">
</body>
</html>
这是我的 index.html.It 无法从我的 settings.py
中获取静态图像
1
2
试试这个你加载静态文件但是你使用了静态
<img src="{% staticfiles "images/abc.jpg" %}">
{% load staticfiles %}
<html>
<head>
<title>DJANGO PAGE</title>
</head>
<body>
<H1>Hello this is index.html</H1>
<h1>Hi this contains an image also</h1>
<img src="{% static "images/abc.jpg" %}">
</body>
</html>
这是我的 index.html.It 无法从我的 settings.py
中获取静态图像1
2
试试这个你加载静态文件但是你使用了静态
<img src="{% staticfiles "images/abc.jpg" %}">