使用 Base64 类从 ‘js-base64’ 库进行 Base64 编码和解码
一、安装 ‘js-base64’库
vue:
使用 npm 或 yarn 包管理器来安装‘js-base64’ 库
npm install --save js-base64
原生:
通过
<script src="https://cdn.jsdelivr.net/npm/js-base64@3.7.2/base64.min.js"></script>
二、导入‘js-base64’库
vue:
导入 Base64 类:
import { Base64 } from 'js-base64';
或者:
import { encode, decode } from 'js-base64';
三、在页面中使用
vue:
Base64 编码的使用示例:
import { Base64 } from 'js-base64';
const stringToEncode = 'Hello, World!'; // 要进行 Base64 编码的字符串
const encodedString = Base64.encode(stringToEncode); // 进行 Base64 编码
console.log(encodedString); // 输出:SGVsbG8sIFdvcmxkIQ==
Base64 解码的使用示例:
import { Base64 } from 'js-base64';
const base64String = 'SGVsbG8sIFdvcmxkIQ=='; // Base64 编码的字符串
const decodedString = Base64.decode(base64String); // 进行 Base64 解码
console.log(decodedString); // 输出:Hello, World!
或者,导入 encode 和 decode 函数:
Base64 编码的使用示例:
import { encode } from 'js-base64';
const stringToEncode = 'Hello, World!'; // 要进行 Base64 编码的字符串
const encodedString = encode(stringToEncode); // 进行 Base64 编码
console.log(encodedString); // 输出:SGVsbG8sIFdvcmxkIQ==
Base64 解码的使用示例:文章来源:https://www.toymoban.com/news/detail-729868.html
import { decode } from 'js-base64';
const base64String = 'SGVsbG8sIFdvcmxkIQ=='; // Base64 编码的字符串
const decodedString = decode(base64String); // 进行 Base64 解码
console.log(decodedString); // 输出:Hello, World!
原生:
使用 ‘js-base64’ 进行 Base64 编码和解码:文章来源地址https://www.toymoban.com/news/detail-729868.html
<!DOCTYPE html>
<html>
<head>
<title>Base64 Example</title>
<script src="https://cdn.jsdelivr.net/npm/js-base64@3.7.2/base64.min.js"></script>
</head>
<body>
<script>
const stringToEncode = 'Hello, World!'; // 要进行 Base64 编码的字符串
const encodedString = Base64.encode(stringToEncode); // 进行 Base64 编码
console.log(encodedString); // 输出:SGVsbG8sIFdvcmxkIQ==
const base64String = 'SGVsbG8sIFdvcmxkIQ=='; // Base64 编码的字符串
const decodedString = Base64.decode(base64String); // 进行 Base64 解码
console.log(decodedString); // 输出:Hello, World!
</script>
</body>
</html>
到了这里,关于前端Base64 编码和解码的使用方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!