在golang中执行json Unmarshal时如何设置默认值为map值?

时间:2016-03-02 03:44:33

标签: json go

我有这样的结构:

package main

import (
    "encoding/json"
    "fmt"
)

type request struct {
    Version    string               `json:"version"`
    Operations map[string]operation `json:"operations"`
}
type operation struct {
    Type   string `json:"type"`
    Width  int    `json:"width"`
    Height int    `json:"height"`
}

func main() {
    jsonStr := "{\"version\": \"1.0\", \"operations\": {\"0\": {\"type\": \"type1\", \"width\": 100}, \"1\": {\"type\": \"type2\", \"height\": 200}}}"
    req := request{
         Version: "1.0",
    }
    err := json.Unmarshal([]byte(jsonStr), &req)
    if err != nil {
        fmt.Println(err.Error())
    } else {
        fmt.Println(req)
    }
}

我可以设置Version =" 1.0"作为其默认值,但如何将默认值设置为宽度和高度?

1 个答案:

答案 0 :(得分:4)

编写一个unmarshal函数来设置默认值:

func (o *operation) UnmarshalJSON(b []byte) error {
    type xoperation operation
    xo := &xoperation{Width: 500, Height: 500}
    if err := json.Unmarshal(b, xo); err != nil {
        return err
    }
    *o = operation(*xo)
    return nil
}

我创建了一个playground example,修改了JSON以使其可以运行。