我正在开发一个 Google App Engine 项目。
我的应用程序在本地工作并且看起来正确,但是当我尝试在图像目录中上传图像时,它们没有显示在 apppot 中。
作为一个小故障排除,我在“/images/page2.html”中放置了一个 HTML 页面,我可以在 apppot 中加载该页面,但我的页面不显示我的图像。所以,这不是我的路径的问题。
作为另一个健全性检查,我还上传了一个包含 .css 代码的样式表目录,并且正在正确读取。
我怀疑问题出在我的 app.yaml 文件中。
有任何想法吗?
我不想在这里粘贴所有代码,但这里有一些关键行。前两个工作正常。第三个不起作用:
<link type="text/css" rel="stylesheet" href="/stylesheets/style.css" />
<a href="/images/Page2.html">Page 2</a>
<img src="/images/img.gif">
这是我的 app.yaml 文件
application: myApp
version: 1
runtime: python
api_version: 1
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /images
static_dir: images
- url: /.*
script: helloworld.py