带有 google 应用引擎的静态图像文件夹

Static image folder with google app engine

已经有很多 post 处理这个问题,但我无法找到解决我的问题的方法。我正在使用 Google App Engine Launcher 创建一个使用 python 的小型 Web 应用程序。我需要在我的页面上显示图片 (/images/chartname.png)。我正在使用以下 html 代码行 <img width=150 src="/images/chartname.png"> 但图片没有显示。此外,当我打开 http://localhost:8080/images 时出现错误 404。

这是我的 .yaml 文件的内容:

application: app
version: 1
runtime: python27
api_version: 1
threadsafe: false

handlers:
- url: /.*
  script: app.my_app

- url: /images
  static_dir: images

我不明白为什么图片不显示,为什么http://localhost:8080/images returns 404错误

我已经尝试了这个 post 中的建议:Google App Engine add image to page with static folder 但它没有为我做。

尝试重新排序处理程序:

- url: /images
  static_dir: images

- url: /.*
  script: app.my_app

模式按照它们在 app.yaml 文件中出现的顺序从上到下进行评估。模式与 URL 匹配的第一个映射是用于处理请求的映射。