Python bottle 框架引用 bootstrap 里的静态文件,加载不出css样式,请大大们不吝赐教!
文件结构
Package: main
---static
--css
--bootstrap.min.css
--style.css
--js
--img
-- main.py
--main.tpl
run main.py后加载出main.tpl页面,在main.tpl页面需要引用css静态文件
具体代码如下:
from bottle import get, post, request, route, run, template, static_file
import os
@
get
('/main')
def index():
currentPath=os.path.dirname(os.path.realpath(__file__)) #获取当前路径
print currentPath
return template(currentPath+r'/main')
@
route
('/main/static/css/<bootstrap>')
def server_static(bootstrap):
return static_file(bootstrap, root='./main/static/css')
run(host='localhost', port=8081)
请多指教!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
过去这么久上来说一下,已经解决:
@route('/static/css/<filename>')
def server_static(filename):
return static_file(filename, root='./WebRoot/static/css/')