1
Sight4 2014-02-17 11:43:08 +08:00 1
可以自己写filter解决,静态的路径可以在req之前在context添加,例如:
def req_ctx_config(app, static_path): @app.before_request def create_app_config(): if not hasattr(g, 'static_path'): g.static_path= static_path 然后你就可以在渲染里面使用g.static_path获得静态根目录了,如果配合filter,可以实现类似 {{g.static_path|to_static_url('images', '1.jpg')}} 这种模式 |
2
greatghoul 2014-02-17 11:56:23 +08:00 1
也可以自己写marco
https://github.com/ScriptFan/ScriptFan.com/blob/dev/website/scriptfan/templates/_helpers.html 然后直接 {{ t.css('lib/bootstrap/css/bootstrap.min.css') }} |