gpt4 book ai didi

Python/Tornado - 压缩静态文件

转载 作者:太空狗 更新时间:2023-10-29 17:19:02 25 4
gpt4 key购买 nike

对于 django 项目,有一个很棒的工具叫做 django-compressor .它将 compress 模板标签下的所有 js 或 css 文件合并到单个缓存文件中,如下所示:

{% load compress %}

{% compress css %}
<link rel="stylesheet" href="/static/css/one.css" type="text/css" charset="utf-8">
<style type="text/css">p { border:5px solid green;}</style>
<link rel="stylesheet" href="/static/css/two.css" type="text/css" charset="utf-8">
{% endcompress %}

我想知道 Tornado 项目是否有类似的东西?或者可能有任何解决方法/替代解决方案?

我找到了 this github上的项目,但不再维护。

最佳答案

看看tornado_utils ,它应该做你想做的。特别是看tornado_static.py

tornado_static is a module for displaying static resources in a Tornado web application.

It can take care of merging, compressing and giving URLs ideal renamings suitable for aggressive HTTP caching.

关于Python/Tornado - 压缩静态文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16124908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com