Flask的url_for()引用静态文件,如何让http和https都能正常获取
静态js文件,默认是用下列方式获取
{{ url_for('static', filename='css/style.css') }}
这种输出的是
http://
开头的地址,但是,在
https
页面样式就会丢失
为了避免这种问题,html5-boilerplate框架里推荐使用下面不带http的方式引用
<link rel="stylesheet" src="//xxx.com/css/style.css" />
那么,Flask的
url_for()
方法怎么实现呢?
Shaive
10 years, 11 months ago
Answers
我的方法是覆写url_for,但我觉得肯定有别的方法配置。
在发现url_for('static')的时候调用新的方法,调用常量STATIC_URL_ROOT。
STATIC_URL_ROOT = '//xxx.com/css/'
@app.context_processor def override_url_for(): return dict(url_for=static_url_for) def static_url_for(endpoint, **values): if endpoint == 'static': filename = values.get('filename', None) if filename: file_path = STATIC_URL_ROOT + filename return file_path else: return url_for(endpoint, **values)
十六夜琉璃子
answered 10 years, 11 months ago