无法在cherrypy中包含css
我从 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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在配置中指定 css 和 js 以及图像目录作为静态目录:
有关如何编写
site.config
文件的更多信息:http://www.cherrypy.org/wiki/StaticContent
specify css and js and images dirs as an static directories in the configuration:
for more info on how to write
site.config
file:http://www.cherrypy.org/wiki/StaticContent