所以我设法创建了一个在运行时正确显示的网页,但图像不起作用。 我的目录是这样的:
轮询/ mountain.jpg 模板/ 民意测验/ 的index.html 除了别的 我试图在index.html中使用此代码来显示mountain.jpg。
我做错了什么?
<h1 style="font-size:50px;line-height:20px;color:rgb(145,0,0);font-family: Arial Black, Gadget, sans-serif"></h1>
<h2 style="line-height:10px;color:rgb(140,140,140)"></h2>
<h3 style="font-size:40px;line-height:10px;font-family: Arial Black, Gadget, sans-serif"></h3>
<body style="background-color:rgb(255,239,154)"></body>
<!--Style placeholders-->
<h2>Mountain</h2>
<img src="mountain.jpg" alt="Mountain View" style="width:304px;height:228px;">
更新 我设法解决了这个问题。请遵循以下指南:https://docs.djangoproject.com/en/1.9/howto/static-files/
答案 0 :(得分:0)
<强> 解 强> 感谢Q-bart,我设法找到了解释如何使其工作的指南。 https://docs.djangoproject.com/en/1.9/howto/static-files/