2 回答
TA贡献1815条经验 获得超13个赞
听起来您想通过 a 发送非指针值chan interface{}
并让自定义MarshalJSON
方法按预期工作。在这种情况下,不要在指针类型上定义方法。
package main
import (
"encoding/json"
"fmt"
"log"
"time"
)
func printer(in chan interface{}) {
for val := range in {
buf, err := json.Marshal(val)
if err != nil {
log.Println(err.Error())
}
log.Println(string(buf))
}
}
type MyType struct {
name string
}
func (m MyType) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, m.name)), nil
}
func main() {
ch := make(chan interface{})
go printer(ch)
ch <- "string value"
ch <- 25
ch <- MyType{
name: "foo",
}
time.Sleep(time.Second)
}
唯一真正的区别是方法接收器。func (m MyType) MarshalJSON ([]byte, error)代替func (m *MyType) MarshalJSON ([]byte, error)
- 2 回答
- 0 关注
- 256 浏览
添加回答
举报