如何设置django静态图像

时间:2010-02-27 09:52:10

标签: django

我有一个名为index.html的视图和模板。

我有一张破碎的图像。我看到了django docs,这对我来说并不清楚。

怎么做,我让我的图像出现。我问,当development.image在,这个URL /home/logic/quote/hummingbird.gif'

2 个答案:

答案 0 :(得分:2)

您的问题并不是很清楚,但我怀疑您在使用Django内置Web服务器提供静态文件时遇到问题。看看下面的StackOverflow问题:

  1. Django and Serving Static Files
  2. How does Django serve media files?
  3. Django: how do you serve media / stylesheets and link to them within templates

答案 1 :(得分:0)

写一个与inclusion tag类似的东西:

if settings.debug=True:
    return localimage
else:
    return serverimage