原生js實現base64編碼與解碼字符串及對象

前言:最近維護了node開發jade模版的項目,場面一度尷尬,和平時作的截然不同,好不難受。特別是有須要把參數轉換爲base64拼接到url上,各類姿式試了,只能用原生方法編碼解碼,來總結一下。javascript

一. Window 中的 btoa()和atob()解決字符串
該編碼和解碼只實用於字符串。btoa()該方法使用 "A-Z", "a-z", "0-9", "+", "/" 和 "=" 字符來編碼字符串,返回一個 base-64 編碼的字符串;atob() 用於解碼。使用方法:`編碼:const newBase = window.btoa("test");解碼:const oldValue = window.atob(newBase);`。
注:若是有中文,須要使用URL轉碼配合使用。使用方法:`編碼:const newBase = window.btoa(window.encodeURIComponent(JSON.stringify("原生js實現base64編碼與解碼字符串及對象")));解碼:const oldValue =window.decodeURIComponent(window.atob(newBase));`java

二.  Node.js Buffer(緩衝區)解決對象
JavaScript 語言自身只有字符串數據類型,沒有二進制數據類型。但在處理像TCP流或文件流時,必須使用到二進制數據。所以在Node.js中,定義了一個Buffer類,該類用來建立一個專門存放二進制數據的緩存區。每當須要在Node.js中處理I/O操做中移動的數據時,就有可能使用 Buffer 庫。v6.0以前建立Buffer對象直接使用new Buffer()構造函數來建立對象實例,因此在v6.0之後,官方文檔裏面建議使用 Buffer.from() 接口去建立Buffer對象。使用方法:`Buffer.from(JSON.stringify({type: "xxx",id: "xxx"})).toString("base64")`。node

三.  原生js解決對象

緩存

let keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
encodeFuc: function (input) {
  let output = "", chr1, chr2, chr3, enc1, enc2, enc3, enc4, i = 0;
  input = utf8_encode(input);
  while (i < input.length) {
  chr1 = input.charCodeAt(i++);
  chr2 = input.charCodeAt(i++);
  chr3 = input.charCodeAt(i++);
  enc1 = chr1 >> 2;
  enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
  enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
  enc4 = chr3 & 63;
  if (isNaN(chr2)) {
    enc3 = enc4 = 64;
  } else if (isNaN(chr3)) {
    enc4 = 64;
  }
  output = output +
  keyStr.charAt(enc1) + keyStr.charAt(enc2) +
  keyStr.charAt(enc3) + keyStr.charAt(enc4);
  }
  return output;
}
utf8_encode: function (string) {
  string = string.replace(/\r\n/g,"\n");
  let utftext = "";
  for (let n = 0; n < string.length; n++) {
    let c = string.charCodeAt(n);
    if (c < 128) {
    utftext += String.fromCharCode(c);
  } else if((c > 127) && (c < 2048)) {
    utftext += String.fromCharCode((c >> 6) | 192);
    utftext += String.fromCharCode((c & 63) | 128);
  } else {
    utftext += String.fromCharCode((c >> 12) | 224);
    utftext += String.fromCharCode(((c >> 6) & 63) | 128);
    utftext += String.fromCharCode((c & 63) | 128);
  }

  }
  return utftext;
}
// 編碼
const newBase = encodeFuc(JSON.stringify({type: "xxx",id: "xxx"}));

decodeFuc: function (input) {
  let output = "", chr1, chr2, chr3, enc1, enc2, enc3, enc4, i = 0;
  input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
  while (i < input.length) {
    enc1 = keyStr.indexOf(input.charAt(i++));
    enc2 = keyStr.indexOf(input.charAt(i++));
    enc3 = keyStr.indexOf(input.charAt(i++));
    enc4 = keyStr.indexOf(input.charAt(i++));
    chr1 = (enc1 << 2) | (enc2 >> 4);
    chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
    chr3 = ((enc3 & 3) << 6) | enc4;
    output = output + String.fromCharCode(chr1);
    if (enc3 != 64) {
      output = output + String.fromCharCode(chr2);
    }
    if (enc4 != 64) {
      output = output + String.fromCharCode(chr3);
    }
  }
  output = utf8_decode(output);
  return output;
}
utf8_decode: function (utftext) {
  let string = "", i = 0, c = 0, c1 = 0, c2 = 0, c3 = 0;
  while ( i < utftext.length ) {
    c = utftext.charCodeAt(i);
    if (c < 128) {
      string += String.fromCharCode(c);
      i++;
    } else if((c > 191) && (c < 224)) {
      c2 = utftext.charCodeAt(i+1);
      string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
      i += 2;
    } else {
      c2 = utftext.charCodeAt(i+1);
      c3 = utftext.charCodeAt(i+2);
      string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
      i += 3;
    }
  }
  return string;
}
// 解碼
const oldValue = JSON.parse(decodeFuc(newBase));
相關文章
相關標籤/搜索