客户端 Javascript 中的 Base64 编码和解码

Base64 encoding and decoding in client-side Javascript(客户端 Javascript 中的 Base64 编码和解码)
本文介绍了客户端 Javascript 中的 Base64 编码和解码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

JavaScript 中是否有任何方法可用于使用 base64 编码对字符串进行编码和解码?

Are there any methods in JavaScript that could be used to encode and decode a string using base64 encoding?

推荐答案

一些浏览器,如 Firefox、Chrome、Safari、Opera 和 IE10+ 可以原生处理 Base64.看看这个 Stackoverflow 问题.它使用 btoa()atob() 函数.

Some browsers such as Firefox, Chrome, Safari, Opera and IE10+ can handle Base64 natively. Take a look at this Stackoverflow question. It's using btoa() and atob() functions.

对于服务器端的JavaScript(Node),可以使用Buffers进行解码.

For server-side JavaScript (Node), you can use Buffers to decode.

如果您要使用跨浏览器解决方案,可以使用现有的库,例如 CryptoJS 或类似代码:

If you are going for a cross-browser solution, there are existing libraries like CryptoJS or code like:

http://ntt.cc/2008/01/19/base64-encoder-decoder-with-javascript.html(存档)

对于后者,您需要彻底测试该功能的跨浏览器兼容性.并且错误已被报告.

With the latter, you need to thoroughly test the function for cross browser compatibility. And error has already been reported.

这篇关于客户端 Javascript 中的 Base64 编码和解码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)