Python:Flask-Static-Digest 用于处理静态文件缓存问题
【摘要】 Flask-Static-Digest 用于处理静态文件
文档:https://github.com/nickjj/flask-static-digest
安装
pip install Flask-Static-Digest
1
使用示例
# -*- coding: utf-8 -*-
from flask import Flask, render_temp...
Flask-Static-Digest 用于处理静态文件
文档:https://github.com/nickjj/flask-static-digest
安装
pip install Flask-Static-Digest
- 1
使用示例
# -*- coding: utf-8 -*-
from flask import Flask, render_template
from flask_static_digest import FlaskStaticDigest
app = Flask(__name__)
# 注册
FlaskStaticDigest(app)
# 路由
@app.route('/')
def hello_world(): return render_template('index.html')
if __name__ == '__main__': app.run(debug=True)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
index.html
<script type="text/javascript" src="{{ url_for('static', filename='js/index.js') }}"></script>
<script type="text/javascript" src="{{ static_url_for('static', filename='js/index.js') }}"></script>
- 1
- 2
- 3
- 4
配置环境变量 .env
FLASK_APP=hello.app
FLASK_ENV=development
- 1
- 2
命令行执行
$ flask digest compile
- 1
启动服务
http://127.0.0.1:5500/
渲染结果
<!-- url_for -->
<script type="text/javascript" src="/static/js/index.js"></script>
<!-- static_url_for -->
<script type="text/javascript" src="/static/js/index-14362f024c1b0d8a50e669443e935e45.js"></script>
- 1
- 2
- 3
- 4
- 5
配置参数
FLASK_STATIC_DIGEST_BLACKLIST_FILTER = []
# If you want specific extensions to not get md5 tagged you can add them to
# the list, such as: [".htm", ".html", ".txt"]. Make sure to include the ".".
FLASK_STATIC_DIGEST_GZIP_FILES = True
# When set to False then gzipped files will not be created but static files
# will still get md5 tagged.
FLASK_STATIC_DIGEST_HOST_URL = None
# When set to a value such as https://cdn.example.com and you use static_url_for
# it will prefix your static path with this URL. This would be useful if you
# host your files from a CDN. Make sure to include the protocol (aka. https://).
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/115717554
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)