在Javascript中,window.atob()方法解码base64字符串,而window.btoa()方法将string编码为base64。

那他们为什么不像base64Decode()base64Encode()那样命名呢?atob()btoa()毫无意义,因为它们根本不是语义的。

我想知道原因。

最佳答案

atob()btoa()方法允许作者在base64编码之间来回转换内容。



来自:http://www.w3.org/TR/html/webappapis.html#atob

09-25 15:45