最近在用flask坐網(wǎng)站的時(shí)候發(fā)現(xiàn),如果修改了css或js文件伸辟,不論是重啟服務(wù)器還是刷新頁(yè)面都不會(huì)有反應(yīng)麻惶, 上stackoverflow上面查了之后說(shuō)是瀏覽器緩存的問(wèn)題。
[Flask css not updating [closed] - stackoverflow
這是采納的解釋:
Problem is, as already said, related to browser cache.
To solve that, you could add some dynamic variable to your static (css, js) links. I prefer last modified timestamp for each file.
/static/css/style.css?q=1280549780
Here is a snippet for that:
http://flask.pocoo.org/snippets/40/
點(diǎn)開(kāi)那個(gè)鏈接之后可以看到
static url cache buster
Posted by ericbuckley on 2010-09-24 @ 23:02 and filed in URLs
If you decide to add an expires header (and if you haven't already you really should) to your static resources, you now need to worry about cache busting these resources after your next deploy. A simple way of dealing with this is to add a last modified query parameter to the end of your resource. For example:
<link rel="stylesheet" href="/static/css/reset.css?q=1280549780" type="text/css" media="screen" charset="utf-8" />
By adding the following snippet you can override the default url_for(endpoint, **values)
variable in your template context. Now any time you use url_for
in your templates to render a static resource it will be appended with a last modified time stamp parameter.
@app.context_processor
def override_url_for():
return dict(url_for=dated_url_for)
def dated_url_for(endpoint, **values):
if endpoint == 'static':
filename = values.get('filename', None)
if filename:
file_path = os.path.join(app.root_path, endpoint, filename)
values['q'] = int(os.stat(file_path).st_mtime)
return url_for(endpoint, **values)
> This snippet by ericbuckley can be used freely for anything you like. Consider it public domain.
通過(guò)重寫url_for信夫,可以在后面加入時(shí)間戳窃蹋,就可以解決css和js無(wú)法自動(dòng)更新的問(wèn)題卡啰。