在JavaScript 中將字串編碼和解碼為Base64:揭開btoa() 和atob()
在JavaScript 中,將字串編碼和解碼為Base64可以使用btoa() 和atob() 函數來實現。但是,了解這些函數接受和傳回的內容非常重要。
使用btoa() 編碼:
使用atob() 解碼:
使用示例:
<code class="javascript">// Encode a string to Base64 const encodedString = btoa('Hello, World!'); // Decode a Base64-encoded string const decodedString = atob(encodedString);</code>
參考文獻:
以上是如何使用 btoa() 和 atob() 在 JavaScript 中將字串編碼和解碼為 Base64?的詳細內容。更多資訊請關注PHP中文網其他相關文章!