我正在尝试将图像添加到我的简单谷歌应用程序引擎代码中,但如果我按照教程进行操作,它将不起作用。如果我的图像在我的应用程序目录中,它可以工作,但当我将它移动到静态时则不行。
当我在纯 html 中使用它时,例如:
<img src="../static/myimage.jpg"></img>
或者
和许多其他变体,图像只是不显示(它显示它何时位于静态目录之外)。当我在教程中这样做时,在我的设置文件中定义 STATIC_URL :
STATIC_URL = '/static/'
并添加此行(或“/my_image.jpg”等变体)
{% load staticfiles %}
<img src="{% static "my-app/myimage.jpg" %}" alt="My image"/>
导致服务器错误 (500)。我正在使用 django 1.3
这是目录结构:
my-app
\static
myimage.jpg
\templates
base.html
# and other html files
\urls.py, settings.py #and other .py files
应用程序.yaml:
-url: /(.*\.(gif|png|jpg))
static_files: static/\1
upload: static/(.*\.(gif|png|jpg))
设置.py:
ROOT_URLCONF = 'urls'
网址.py:
STATIC_URL = '/static/'