2

我在我的 python webdev 实验中使用带有gevent的瓶子。我的问题是我不能提供静态文件,例如在我的模板中使用外部 css。我的文件夹结构是:/static/css/style.css

我的代码:

索引.py

# -*- coding: UTF-8 -*-
from gevent import monkey; monkey.patch_all() #patching default Python threads
from bottle import mount, run, debug #initializing bottle
from routes import root #importing site routes
debug( True )
run( app = root , host = '0.0.0.0' , port = 80 , server = 'gevent' )

路线.py

# -*- coding: UTF-8 -*-
from bottle import *
root = Bottle()

@root.get('/static/<path:path>')
def serve_files( path ):
    return static_file( path , root = '/static/' )

这是我从终端的回溯:

xxx.xxx.xxx.xxx - - [2011-12-22 09:36:44] "GET /static/css/style.css HTTP/1.1" 500 161 0.002867
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/gevent-0.13.6-py2.7-linux-i686.egg/gevent/pywsgi.py", line 438, in handle_one_response
    self.run_application()
  File "/usr/local/lib/python2.7/dist-packages/gevent-0.13.6-py2.7-linux-i686.egg/gevent/pywsgi.py", line 424, in run_application
    self.result = self.application(self.environ, self.start_response)
  File "/usr/local/lib/python2.7/dist-packages/bottle-0.10.4-py2.7.egg/bottle.py", line 849, in __call__
    return self.wsgi(environ, start_response)
  File "/usr/local/lib/python2.7/dist-packages/bottle-0.10.4-py2.7.egg/bottle.py", line 841, in wsgi
    % (html_escape(repr(_e())), html_escape(format_exc(10)))
NameError: global name '_e' is not defined

请帮忙。

更新:

我已经下载了不稳定版本的 Bottle(版本 0.11)并将其导入到我的脚本中。现在没有 500 错误和回溯,但是 style.css 给了我 404。

[2011-12-22 12:42:59] "GET /static/css/style.css HTTP/1.1" 404 122 0.000591
4

2 回答 2

4

您的 404 可能是因为您的静态文件的根路径可能是错误的。

root='/static/'仅当您static的根文件系统中有一个文件夹时才可以。可能这不是你真正拥有的。如果您有一个项目文件夹并且在此文件夹中您有一个static文件夹,请使用root='./static/'它,它会正常工作。

于 2011-12-25T13:41:19.830 回答
0

我知道这已经得到解答,但如果你想要更多面向生产的东西,白噪声很棒。

from app import appRoute
from client import clientRoute
from main import mainRoute
from api import apiRoute
from beaker.middleware import SessionMiddleware
from whitenoise import WhiteNoise
if whitecompress:
    static_compress(whitecompress) # auto mins and gzips all js and css files
botapp = bottle.app()
for nftyRoute in (mainRoute, appRoute, clientRoute, apiRoute):          
    botapp.merge(nftyRoute)
botapp = SessionMiddleware(botapp, beaker_opts)
botapp = WhiteNoise(botapp)
botapp.add_files(staticfolder, prefix='static/')
botapp.add_files('{}/common/img/favicon.ico'.format(staticfolder), prefix='favicon.ico')
print('WhiteNoise Enabled')
WSGIServer(("0.0.0.0", int(port)), botapp, handler_class=WebSocketHandler).serve_forever()

这允许您发布您的静态文件,它还将自动为您处理交付 gzip 文件。我发现这个解决方案比瓶子内置的选项更强大。

于 2018-07-17T21:26:24.000 回答