图像破裂了

时间:2017-02-06 13:16:55

标签: python django django-templates

图像被破解。 我在photo.html中写道,

ls

我不知道为什么。我怎么能解决它? “img标签”错了吗?

“破解”的含义就像 enter image description here

3 个答案:

答案 0 :(得分:0)

检查DOM准备就绪时生成的图片网址。

  • 点击损坏的图片图标。
  • 右键单击>检查元素
  • 检查网址。

如果网址正确..请检查网络请求面板..以确认图像是否已加载。

他们可能是一些错误..就像在服务器上找不到图像..或CORS问题。

答案 1 :(得分:0)

您的HTML标记应如下所示:

<img class="img-responsive" src="photo.image.url">

答案 2 :(得分:0)

photos.image引用图像文件本身,而不是图像的网址。 您需要使用图片网址photo.image.url

<img class="img-responsive" src="{{ photos.image.url }}">