当前位置:   article > 正文

前端Base64 编码和解码的使用方法_base 64 converter怎么使用

base 64 converter怎么使用

使用 Base64 类从 ‘js-base64’ 库进行 Base64 编码和解码

一、安装 ‘js-base64’库

vue: 使用 npm 或 yarn 包管理器来安装‘js-base64’ 库

npm install --save js-base64
  • 1

原生: 通过

<script src="https://cdn.jsdelivr.net/npm/js-base64@3.7.2/base64.min.js"></script>
  • 1

二、导入‘js-base64’库

vue:
导入 Base64 类:

import { Base64 } from 'js-base64';
  • 1

或者:

import { encode, decode } from 'js-base64';
  • 1

三、在页面中使用

vue:
Base64 编码的使用示例:

import { Base64 } from 'js-base64';

const stringToEncode = 'Hello, World!'; // 要进行 Base64 编码的字符串
const encodedString = Base64.encode(stringToEncode); // 进行 Base64 编码
console.log(encodedString); // 输出:SGVsbG8sIFdvcmxkIQ==
  • 1
  • 2
  • 3
  • 4
  • 5

Base64 解码的使用示例:

import { Base64 } from 'js-base64';

const base64String = 'SGVsbG8sIFdvcmxkIQ=='; // Base64 编码的字符串
const decodedString = Base64.decode(base64String); // 进行 Base64 解码
console.log(decodedString); // 输出:Hello, World!
  • 1
  • 2
  • 3
  • 4
  • 5

或者,导入 encode 和 decode 函数:
Base64 编码的使用示例:

import { encode } from 'js-base64';

const stringToEncode = 'Hello, World!'; // 要进行 Base64 编码的字符串
const encodedString = encode(stringToEncode); // 进行 Base64 编码
console.log(encodedString); // 输出:SGVsbG8sIFdvcmxkIQ==
  • 1
  • 2
  • 3
  • 4
  • 5

Base64 解码的使用示例:

import { decode } from 'js-base64';

const base64String = 'SGVsbG8sIFdvcmxkIQ=='; // Base64 编码的字符串
const decodedString = decode(base64String); // 进行 Base64 解码
console.log(decodedString); // 输出:Hello, World!
  • 1
  • 2
  • 3
  • 4
  • 5

原生:
使用 ‘js-base64’ 进行 Base64 编码和解码:

<!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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/202804
推荐阅读
相关标签
  

闽ICP备14008679号