如何在Go中为标量派生的类型实现UnmarshalJSON?

问题描述:

我有一个简单的类型,可以在Go中实现子类型整数const到字符串的转换,反之亦然.我希望能够将JSON中的字符串自动解组为这种类型的值.我不能,因为UnmarshalJSON没有给我返回或修改标量值的方法.期望有一个结构,其成员由UnmarshalJSON设置.除了内置标量类型以外,,string"方法都不起作用.有没有一种方法可以为派生的标量类型正确实现UnmarshalJSON?

I have a simple type that implements conversion of subtyped integer consts to strings and vice versa in Go. I want to be able to automatically unmarshal strings in JSON to values of this type. I can't, because UnmarshalJSON doesn't give me a way to return or modify the scalar value. It's expecting a struct, whose members are set by UnmarshalJSON. The ",string" method doesn't work either for other than builtin scalar types. Is there a way to implement UnmarshalJSON correctly for a derived scalar type?

这是我追求的一个例子.我希望它打印"Hello Ralph"四次,但是它却打印"Hello Bob"四次,因为PersonID未被更改.

Here's an example of what I'm after. I want it to print "Hello Ralph" four times, but it prints "Hello Bob" four times because the PersonID isn't being changed.

package main

import (
    "encoding/json"
    "fmt"
)

type PersonID int

const (
    Bob PersonID = iota
    Jane
    Ralph
    Nobody = -1
)

var nameMap = map[string]PersonID{
    "Bob":    Bob,
    "Jane":   Jane,
    "Ralph":  Ralph,
    "Nobody": Nobody,
}

var idMap = map[PersonID]string{
    Bob:    "Bob",
    Jane:   "Jane",
    Ralph:  "Ralph",
    Nobody: "Nobody",
}

func (intValue PersonID) Name() string {
    return idMap[intValue]
}

func Lookup(name string) PersonID {
    return nameMap[name]
}

func (intValue PersonID) UnmarshalJSON(data []byte) error {
    // The following line is not correct
    intValue = Lookup(string(data))
    return nil
}

type MyType struct {
    Person   PersonID `json: "person"`
    Count    int      `json: "count"`
    Greeting string   `json: "greeting"`
}

func main() {
    var m MyType
    if err := json.Unmarshal([]byte(`{"person": "Ralph", "count": 4, "greeting": "Hello"}`), &m); err != nil {
        fmt.Println(err)
    } else {
        for i := 0; i < m.Count; i++ {
            fmt.Println(m.Greeting, m.Person.Name())
        }
    }
}

对unmarshal方法使用指针接收器.如果使用值接收器,则方法返回时,对接收器的更改将丢失.

Use a pointer receiver for the unmarshal method. If a value receiver is used, changes to the receiver are lost when the method returns.

unmarshal方法的参数是JSON文本.取消封送JSON文本以获取纯文本字符串,并删除所有JSON引用.

The argument to the unmarshal method is JSON text. Unmarshal the JSON text to get a plain string with all JSON quoting removed.

func (intValue *PersonID) UnmarshalJSON(data []byte) error {
  var s string
  if err := json.Unmarshal(data, &s); err != nil {
    return err
  }
  *intValue = Lookup(s)
  return nil
}

JSON标记与示例JSON之间不匹配.我更改了JSON以使其与标记匹配,但是您可以用其他方式对其进行更改.

There's a mismatch between the JSON tags an the example JSON. I changed the JSON to match the tag, but you can change it the other way.

if err := json.Unmarshal([]byte(`{"person": "Ralph", "count": 4, "greeting": "Hello"}`), &m); err != nil {

游乐场示例