base64
base64
函数主要是用来将字符串或 bytes 进行 base64 编码
函数原型
func base64(v1 string/bytes) string
参数介绍
参数名称 | 参数介绍 |
---|---|
v1 | 待转换数据 |
举例
待转换数据 | 转换语句 | 输出结果 |
---|---|---|
asdf | base64("asdf") | YXNkZg== |
b"\xac\xed\x00\x05" | base64(b"\xac\xed\x00\x05") | rO0ABQ== |
Was this page helpful?
base64
函数主要是用来将字符串或 bytes 进行 base64 编码
func base64(v1 string/bytes) string
参数名称 | 参数介绍 |
---|---|
v1 | 待转换数据 |
待转换数据 | 转换语句 | 输出结果 |
---|---|---|
asdf | base64("asdf") | YXNkZg== |
b"\xac\xed\x00\x05" | base64(b"\xac\xed\x00\x05") | rO0ABQ== |
Was this page helpful?