gpt4 book ai didi

python - 如何在 webpy 中提供文件?

转载 作者:太空狗 更新时间:2023-10-29 20:40:09 27 4
gpt4 key购买 nike

我正在使用 webpy framefork。我想根据其中一个请求提供静态文件。 webpy 框架中是否有特殊方法,或者我只需要读取并返回该文件?

最佳答案

如果您正在运行开发服务器(没有 apache):

Create a directory (also known as a folder) called static in the location of the script that runs the web.py server. Then place the static files you wish to serve in the static folder.

For example, the URL http://localhost/static/logo.png will send the image ./static/logo.png to the client.

引用:http://webpy.org/cookbook/staticfiles


更新。如果您确实需要在 / 上提供静态文件,您可以简单地使用重定向:

#!/usr/bin/env python

import web

urls = (
'/', 'index'
)

class index:
def GET(self):
# redirect to the static file ...
raise web.seeother('/static/index.html')

app = web.application(urls, globals())

if __name__ == "__main__": app.run()

关于python - 如何在 webpy 中提供文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4751508/

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