gpt4 book ai didi

python - 如何在 Tornado 中设置静态路径?

转载 作者:行者123 更新时间:2023-11-28 22:35:06 32 4
gpt4 key购买 nike

我想设置我的http服务器的静态目录,并在里面放一些图片,这样用户就可以使用url获取我的图片。但是我失败了,下面的代码不起作用:

# 静态路径
STATIC_DIRNAME = "resources"
# 设置static path
settings = {
"static_path": os.path.join(os.path.dirname(__file__), STATIC_DIRNAME),
}

# and I passed settings to Application
app = tornado.web.Application([
(r"/pictures", handler.PicturesHandler),
], **settings)

如何将静态目录设置为“资源”?

(我想通过url获取我的图片如:localhost:8888/resources/1.jpg)

最佳答案

使用static_url_prefix

settings = {
"static_path": os.path.join(os.path.dirname(__file__), STATIC_DIRNAME),
"static_url_prefix": "/resources/",
}

关于python - 如何在 Tornado 中设置静态路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38479973/

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