我正在从事 Google App Engine 项目。
我的应用程序在本地运行并且看起来正确,但是当我尝试在图像目录中上传图像时,它们没有显示在 appspot 中。
作为一个小故障排除,我在“/images/page2.html”中放置了一个 HTML 页面,我可以在 appspot 加载该页面,但我的页面不显示我的图像。所以,这不是我的路径问题。
作为另一个健全性检查,我还上传了一个样式表目录,其中包含 .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
我是一名优秀的程序员,十分优秀!