Can I compress data in JavaScript?

2019-02-13 09:50发布

I'm using some pretty heavy AJAX with lots of data going from client to server. How can I compress the data (mostly plain text) before sending to the server?

And how can I uncompress the data on the server side?

3条回答
女痞
3楼-- · 2019-02-13 10:19

The jsolait library has a codec that supports the LZW algorithm (among others, including base64 encoding/decoding). The only thing that makes me a little hesitant is that this library is no longer being actively maintained.

EDIT

I was able to find a few more implementations of the LZW algorithm in Javascript.

查看更多
Deceive 欺骗
4楼-- · 2019-02-13 10:29

jSEND seems to do EXACTLY this. Anyone ever use it?

Broken link removed: led to spam landing page @ jsend.org

查看更多
登录 后发表回答