gpt4 book ai didi

python - 在 Google App Engine 之外使用 webapp2 提供样式表

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

因此,我已经使用 webapp2/jinja2 和粘贴服务器成功部署了一个应用程序,但在提供静态样式表时遇到了问题。

我有幸通过 this method 访问了静态文件,以及实现我用一些 google-fu 发现的 StaticFileHandler:

import os
import mimetypes
import webapp2
import logging

class StaticFileHandler(webapp2.RequestHandler):
def get(self, path):
abs_path = os.path.abspath(os.path.join(self.app.config.get('webapp2_static.static_file_path', 'static'), path))
if os.path.isdir(abs_path) or abs_path.find(os.getcwd()) != 0:
self.response.set_status(403)
return
try:
f = open(abs_path, 'r')
self.response.headers.add_header('Content-Type', mimetypes.guess_type(abs_path)[0])
self.response.out.write(f.read())
f.close()
except:
self.response.set_status(404)

我的主要应用程序路由如下所示:

app = webapp2.WSGIApplication([('/', HelloWorld),
(r'/display', DisplayHandler),
(r'/static/(.+)', StaticFileHandler)
], debug=True)

我的 css 文件在应用程序根目录下的文件夹中:/static/css/main.css

我可以通过直接 url 访问该文件,甚至可以将其链接为样式表,但样式不适用。有任何想法吗?还有另一种方式来提供样式表吗?一些实现类似于 GAE 的 app.yaml 的方法?

最佳答案

您不需要静态文件处理程序。
通过将此添加到您的 app.yaml 来上传带有静态文件夹的应用程序

<罢工>
- url: /static/
static_dir: static

文档在这里: https://developers.google.com/appengine/docs/python/config/appconfig#Static_Directory_Handlers

编辑:在评论中查看下面的答案

关于python - 在 Google App Engine 之外使用 webapp2 提供样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10935103/

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