今天在项目公关的过程中,需要对interface{}类型进行转换为具体结构体
很自然的用到了resultBytes, _ := json.Marshal(result),然后对resultBytes进行反序列化转换为对应的结构体err := json.Unmarshal(resultBytes, &phone),但是结果缺出现反序列化出错:
json: cannot unmarshal string into Go value of type model.Phone
var result interface{}
result = `{"name":"oppo", "price":3000, "Long": 700}`
resultBytes, _ := json.Marshal(result)
err := json.Unmarshal(resultBytes, &phone)
if err != nil {
fmt.Println("反序列化出错:", err)
return
}
通过debug发现序列化后的resultBytes它是一个完完全全的字符串,里面的name、price都被加上了双引号,也就是整个变量本质上就是一个字符串。