我创建了一个 DJANGO 博客引擎,它接收我的帖子,模板将其解析为 html 标签。链接等..正在工作,但它不加载图像文件,而是显示 'alternative' 。我已经在单独的 html 文件中尝试了该标签,但事实并非如此。只是不显示来自 django 博客文章中的图像。
模板文件的相关部分:
{% include 'blog/header.html' %}
</aside>
<section id ="content">
<article>
{%for post in posts %}
<h2><a href="{{ post_get_absolute_url }}">{{ post.title }}</a></h2>
<h3>{{ post.created}}</h3>
<p>
{{ post.body|safe }}<br>
</p>
<h3>By {{ post.author }}</h3>
我正在复制粘贴有问题的帖子
<---- text here ------------------>
<a href="http://gdcm.sourceforge.net/html/classgdcm_1_1Directory.html">GDCM::Directory</a>
<img src="/home/usman/www/deejay/blog/static/images/dicomdir.png" />
This is it
有趣的是,“a”标签工作正常,但“img”标签不起作用。我已经尝试了很多变体,但我想要一些内联代码来显示简单的 html 标记,或者我当然会通过将一些变量从帖子内部传递给模板来以编程方式使用它,让它知道图像的位置。