最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn)

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 19:32:32
文檔

js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn)

js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。代碼如下:<!DOCTYPE html> <html lang="zh"> <head> <meta char
推薦度:
導(dǎo)讀js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。代碼如下:<!DOCTYPE html> <html lang="zh"> <head> <meta char

本篇文章給大家?guī)淼膬?nèi)容是關(guān)于js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。

代碼如下:

<!DOCTYPE html>
<html lang="zh">
<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
 <script src="https://cdn.bootcss.com/pako/1.0.6/pako.min.js"></script>
 </head>
 <body>
 <input id="content" type="text">
 <button onclick="encode()">encode</button>
 <button onclick="decode()">decode</button>
 <div id="ciphertext"></div>
 </body>
 </html>
 <script type="text/javascript">
 function encode(){
 var str = $('#content').val();
 str = window.btoa(pako.gzip(str, {to: "string"}))
 $('#ciphertext').text(str);
}
function decode(){
 var encodedData = $('#content').val(); 
 var decodedData = window.atob(encodedData); 
 var charData = decodedData.split('').map(function(x){return x.charCodeAt(0);}); 
 var binData = new Uint8Array(charData); 
 var data = pako.inflate(binData); 
 decodedData = String.fromCharCode.apply(null, new Uint16Array(data)); 

 $('#ciphertext').text(decodedData);
}
</script>

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn)

js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于js實(shí)現(xiàn)gzip解壓縮的代碼實(shí)現(xiàn),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。代碼如下:<!DOCTYPE html> <html lang="zh"> <head> <meta char
推薦度:
標(biāo)簽: 解壓 實(shí)現(xiàn) js
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top