我正在使用cherryPy框架来为我的网站提供服务,但似乎无法找到我的css脚本,无论是静态路径还是绝对路径。如果我只是通过浏览器访问index.tmpl文件,css脚本工作正常,但是当我通过cherrypy请求它时,它不使用css脚本。
根目录结构:
site.py
template/index.tmpl
static/css/main.css
site.py
import sys
import cherrypy
import os
from Cheetah.Template import Template
class Root:
@cherrypy.expose
def index(self):
htmlTemplate = Template(file='templates/index.tmpl')
htmlTemplate.css_scripts=['css/main.css']
return str(htmlTemplate)
# On Startup
current_dir = os.path.dirname(os.path.abspath(__file__)) + os.path.sep
cherrypy.config.update({
'environment': 'production',
'log.screen': True,
'server.socket_host': '127.0.0.1',
'server.socket_port': 2000,
'engine.autoreload_on': True,
'/':{
'tools.staticdir.root' : current_dir,
},
'/static':{
'tools.staticdir.on' : True,
'tools.staticdir.dir' : "static",
},
})
cherrypy.quickstart(Root())
模板/ index.tmpl
<!DOCTYPE html>
<html>
<head>
#for $script in $css_scripts:
<link rel="stylesheet" href="$script" type="text/css" />
#end for
<link rel="stylesheet" href="C:/ABSOLUTE/PATH/main.css" type="text/css" />
</head>
<body>
<! MY HTML CODE IS HERE>
</body>
</html>
我做错了什么?
修改
我尝试使用static/css/main.css
作为静态路径
我还尝试了相对于site.py和相对于index.tmpl的相对路径
这是我得到的错误:
GET http://localhost:2000/static/css/main.css 404 (Not Found)
答案 0 :(得分:2)
我不确定为什么会这样,但是在尝试了一百万件之后,这就解决了这个问题。如果有人知道为什么那么请赐教。
config
字典更改为包含所有global
个变量
在一个子词典下。cherrypy.config.update()
功能并将配置直接送到cherrypy.quickstart()
这是更改后的代码:
import sys
import cherrypy
import os
from Cheetah.Template import Template
class Root:
@cherrypy.expose
def index(self):
htmlTemplate = Template(file='templates/index.tmpl')
htmlTemplate.css_scripts=['static/css/main.css']
return str(htmlTemplate)
# On Startup
current_dir = os.path.dirname(os.path.abspath(__file__)) + os.path.sep
config = {
'global': {
'environment': 'production',
'log.screen': True,
'server.socket_host': '127.0.0.1',
'server.socket_port': 2000,
'engine.autoreload_on': True,
'log.error_file': os.path.join(current_dir, 'errors.log'),
'log.access_file': os.path.join(current_dir, 'access.log'),
},
'/':{
'tools.staticdir.root' : current_dir,
},
'/static':{
'tools.staticdir.on' : True,
'tools.staticdir.dir' : 'static',
},
}
cherrypy.quickstart(Root(), '/', config)
答案 1 :(得分:1)
不要将绝对路径放到CSS脚本中,它应该是相对的。
尝试将其设置为href="/static/css/main.css"
,将配置设置为
[/static]
tools.staticdir.on = True
tools.staticdir.dir = 'static'