函数原型

func base64(v1 string/bytes) string

参数介绍

参数名称参数介绍
v1待转换数据

举例

待转换数据转换语句输出结果
asdfbase64("asdf")YXNkZg==
b"\xac\xed\x00\x05"base64(b"\xac\xed\x00\x05")rO0ABQ==

Was this page helpful?