摘要: let Base64 = { encode(str) { // first we use encodeURIComponent to get percent-encoded UTF-8, // then we convert the percent encodings into raw bytes 阅读全文
posted @ 2020-07-29 16:02 小魏code 阅读(6438) 评论(0) 推荐(1)
摘要: npm install --save base-64 在react中中引入依赖 import Base64 from 'base-64'; 使用 Base64.encode(this.pwd);//加密 Base64.decode(this.pwd);//解密 阅读全文
posted @ 2020-07-29 10:09 小魏code 阅读(5408) 评论(0) 推荐(0)