gpt4 book ai didi

python - 如何在瓶服务器中返回一个 html 文件?

转载 作者:太空狗 更新时间:2023-10-30 00:40:51 26 4
gpt4 key购买 nike

所以我有一个正在运行的 bottle web 框架,但我想在其中包含一个网页。

我已经用 html 和 css 创建了网页,但我不确定如何让 bottle 使用它。我让它只显示 html,但它的 css 部分不起作用。

我试过谷歌搜索,但我似乎找不到这方面的例子。

@get('/test')
def test():
return static_file('index.html' , root="views")

我的 css 文件与 views 文件夹位于同一目录中。

最佳答案

from bottle import static_file


@route('/static/<filename>')
def server_static(filename):
return static_file(filename, root='/path/to/your/static/files')

这是 Bottle 文档提供的用于提供静态文件的代码。

关于python - 如何在瓶服务器中返回一个 html 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21818720/

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