为了账号安全,请及时绑定邮箱和手机立即绑定

json.unmarshal() - 返回零

json.unmarshal() - 返回零

Go
LEATH 2021-09-13 15:11:20
我从基本切片(由 json.Marshal 制作的切片)获取一个字节的正常切片并尝试解码它们,但是 json.unmarshal() - 返回 nil代码 :coded := redis.LoadFromBase()uncoded := json.Unmarshal(coded, &p)fmt.Println("Bytes:", coded)fmt.Println("Unmarshalled:", uncoded)回来:Bytes: [123 34 84 105 116 108 101 34 58 34 97 34 44 34 67 111 110 116 101 110 116 34 58 34 98 34 125]Unmarshalled: <nil>LoadFromBase() 工作正常
查看完整描述

1 回答

?
收到一只叮咚

TA贡献1821条经验 获得超4个赞

您正在打印json.Unmarshal不是实际解码值返回的错误。正是nil如此,一切都很好。


它应该是:


coded := redis.LoadFromBase()

err := json.Unmarshal(coded, &p)

if (err != nil) {

    // handle error here

}


fmt.Println("Bytes:", coded)

fmt.Println("Unmarshalled:", p)


查看完整回答
反对 回复 2021-09-13
  • 1 回答
  • 0 关注
  • 157 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信