1

尝试使用 Bottle 加载静态文件时总是得到 404。我已经提到了堆栈溢出问题和谷歌群聊,但没有什么能帮助我纠正我的问题。请帮助我..花了很多时间在这...

Tuts
   main.py
   static/
     bootstarp.css
   views/
     index.tpl

main.py 代码

import bottle
from bottle import Bottle
from os.path import basename,abspath, dirname, join

app = bottle.default_app()

appPath = dirname(abspath(''))
print appPath

@bottle.route('/')
def index():
    return bottle.template('index', dict(title=appPath,get_url=app.get_url))

@bottle.route('/static/:filename#.*#', name='css')
def server_static(filename):
    return bottle.static_file(filename, root=join(appPath,'static'))

bottle.debug(True)
bottle.run(host='localhost', port=8082,reloader=True)


**Template:**

<link href="{{ get_url('css', filename='bootstrap.css') }}" rel="stylesheet" media="screen">
4

1 回答 1

0

添加

from bottle import static_file

在顶部。然后只需使用static_file(..., ...)就可以了:

@bottle.route('/static/:filename#.*#', name='css')
def server_static(filename):
    return static_file(filename, root=join(appPath,'static'))
于 2013-01-25T09:58:37.320 回答