gpt4 book ai didi

go - 您如何在Go中使用base64编码编码(marshal)处理的数据?

转载 作者:行者123 更新时间:2023-12-01 22:42:52 27 4
gpt4 key购买 nike

数据的类型为interface{},那么您如何知道dst的大小呢?

marshalledJSON, _ := json.Marshal(data)
dst := make([]byte, <length>) // what's <length>?
base64.RawURLEncoding.Encode(dst, marshalledJSON)
fmt.Println("dst:", dst)

最佳答案

使用EncodedLen:

dst := make([]byte, base64.RawURLEncoding.EncodedLen(len(marshalledJSON)))

关于go - 您如何在Go中使用base64编码编码(marshal)处理的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60067744/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com