gpt4 book ai didi

google-app-engine - 使用 Google App Engine 上传图片

转载 作者:太空宇宙 更新时间:2023-11-03 15:21:47 26 4
gpt4 key购买 nike

我正在从事 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

最佳答案

你必须为图片和css文件等静态内容配置app.yaml

例子:

 url: /(.*\.(gif|png|jpg))
static_files: static/\1
upload: static/(.*\.(gif|png|jpg))

更多信息请查看: http://code.google.com/appengine/docs/configuringanapp.html

关于google-app-engine - 使用 Google App Engine 上传图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/160724/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com