无法在cherrypy中包含css

发布于 2024-11-09 04:12:36 字数 372 浏览 1 评论 0原文

我从 PHP 开始使用 CherryPy,但遇到了问题。我在 Eclipse 项目( PyDevcherrypy )中创建,它在浏览器中显示基本 html,但由于某种原因它想要包含 css 和 js 文件。我就像在 php 中一样包含(html,有 css 文件夹,相对路径可以)

<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />

但它没有显示。下面是我的项目截图。谁能告诉他们如何包含在 CherryPy css 中? 在此处输入图像描述

I come on CherryPy from PHP, but I have problem. I created in Eclipse project ( PyDev cherrypy ) and it shows in browser basic html but for some reason it want include css and js files. I included just like in php ( html, there is css folder, relative path is ok )

<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />

but it doesn't show. Below is my project screenshot. Can anybody tell em how to include in CherryPy css ?
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黎夕旧梦 2024-11-16 04:12:36

在配置中指定 css 和 js 以及图像目录作为静态目录:

[/css]
tools.staticdir.on = True
tools.staticdir.dir = "static"

有关如何编写 site.config 文件的更多信息:

http://www.cherrypy.org/wiki/StaticContent

specify css and js and images dirs as an static directories in the configuration:

[/css]
tools.staticdir.on = True
tools.staticdir.dir = "static"

for more info on how to write site.config file:

http://www.cherrypy.org/wiki/StaticContent

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文