在我的Django应用程序中,我试图在页面上显示图像。
我正在查询views.py
中的图片网址。它打印:profile_pics/BRICKS_white_small.png
。
图片位于nightplus / media / profile_pics。
在我的index.html中,我试图显示此图像。
首先,我打印页面上的路径,看起来很有希望:
<p>Url: {{picture_url}}</p>
打印:网址:profile_pics / BRICKS_white_small.png
现在使用:
img src="nightplus/{{ picture_url }}" alt="profile_pic"></img
它不显示alt属性以外的任何内容。 控制台说: 未找到:/index/nightplus/profile_pics/BRICKS_white_small.png
我想是因为某种原因添加了/ index / part。也&#34;媒体&#34;被切断了。 有没有办法改变这个?