Cocos Creator TS lz-string存储 数据压缩

Posted LANGZI7758521

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cocos Creator TS lz-string存储 数据压缩相关的知识,希望对你有一定的参考价值。

 if (txt!._file) 
                if (window['LZString']) 
                    content = window['LZString'].decompressFromEncodedURIComponent(txt!._file);
                
                const objJson = JSON.parse(content);
                cb(null, objJson);
             else if (txt.text) 
                if (window['LZString']) 
                    content = window['LZString'].decompressFromEncodedURIComponent(txt!.text);
                

                const objJson = JSON.parse(content);
                cb(null, objJson);
             

导入为插件
 

declare global 
    namespace globalThis 
        var LZString: any;
    

浏览器localStorage存储为 5M 然而并不能满足我们的要求
我们可以压缩的是您可以存储的更多数据。好在JS 有lz - string 库

以上是关于Cocos Creator TS lz-string存储 数据压缩的主要内容,如果未能解决你的问题,请参考以下文章

COCOS CREATOR(TS)之节点鼠标事件

cocos creator TS 的使用详解一

COCOS CREATOR(TS) 之HTTP通信

cocos creator TS A*寻路

COCOS CREATOR(TS)之按钮事件

COCOS CREATOR(TS)之setTimeOut