系列文章:
[工作经验]go, json 接收string 转为int
[工作经验]go, json 接收int 转为string
话不多说,上代码。
转化为string 字节中,手动拼接一个 引号
type TestAgeToString int
func (t *TestAgeToString) MarshalJSON() ([]byte, error) {
// 转化为string 字节中,手动拼接一个 引号
this := fmt.Sprintf(`"%d"`, *t)
//this := fmt.Sprintf(`%d`, *t)
returnString := []byte(this)
return returnString, nil}
本作品采用《CC 协议》,转载必须注明作者和本文链接
感谢关注
上海PHP自学中心-免费编程视频教学|