JSON omitempty With time.Time Field

前端 未结 3 1363
陌清茗
陌清茗 2020-12-05 06:10

Trying to json Marshal a struct that contains 2 time fields. But I only want the field to come through if it has a time value. So I\'m using json:\",omitempty\"

相关标签:
3条回答
  • 2020-12-05 06:54

    The omitempty tag option does not work with time.Time as it is a struct. There is a "zero" value for structs, but that is a struct value where all fields have their zero values. This is a "valid" value, so it is not treated as "empty".

    But by simply changing it to a pointer: *time.Time, it will work (nil pointers are treated as "empty" for json marshaling/unmarshaling). So no need to write custom Marshaler in this case:

    type MyStruct struct {
        Timestamp *time.Time `json:",omitempty"`
        Date      *time.Time `json:",omitempty"`
        Field     string     `json:",omitempty"`
    }
    

    Using it:

    ts := time.Date(2015, 9, 18, 0, 0, 0, 0, time.UTC)
    ms := MyStruct{
        Timestamp: &ts,
        Field:     "",
    }
    

    Output (as desired):

    {"Timestamp":"2015-09-18T00:00:00Z"}
    

    Try it on the Go Playground.

    If you can't or don't want to change it to a pointer, you can still achieve what you want by implementing a custom Marshaler and Unmarshaler. If you do so, you can use the Time.IsZero() method to decide if a time.Time value is the zero value.

    0 讨论(0)
  • 2020-12-05 07:01

    As a follow up to icza's answer here is a custom marshaller that omits an empty date field but keeps the rest of the fields unchanged.

    func (ms *MyStruct) MarshalJSON() ([]byte, error) {
        type Alias MyStruct
        if ms.Timestamp.IsZero() {
            return json.Marshal(&struct {
                Timestamp int64 `json:",omitempty"`
                *Alias
            }{
                Timestamp: 0,
                Alias:     (*Alias)(ms),
            })
        } else {
            return json.Marshal(&struct {
                *Alias
            }{
                Alias: (*Alias)(ms),
            })
        }
    }
    

    This borrows from http://choly.ca/post/go-json-marshalling/

    The OPs case has two time fields which would make it much more complicated. (you'd have to check for neither, either and both being empty!)

    There may be better ways to achieve this, so comments are welcome.

    0 讨论(0)
  • 2020-12-05 07:03

    you may define you self Time type for custom marshal format, and use it everywhere instead time.Time

    http://play.golang.org/p/S9VIWNAaVS

    package main
    
    import "fmt"
    import "time"
    import "encoding/json"
    
    type MyTime struct{
        *time.Time
    }
    
    func (t MyTime) MarshalJSON() ([]byte, error) {
            return []byte(t.Format("\"2006-01-02T15:04:05Z\"")), nil
       }
    
    
       // UnmarshalJSON implements the json.Unmarshaler interface.
        // The time is expected to be a quoted string in RFC 3339 format.
    func (t *MyTime) UnmarshalJSON(data []byte) (err error) {
            // Fractional seconds are handled implicitly by Parse.
            tt, err := time.Parse("\"2006-01-02T15:04:05Z\"", string(data))
            *t = MyTime{&tt}
            return
       }
    
    func main() {
        t := time.Now()
        d, err := json.Marshal(MyTime{&t})
        fmt.Println(string(d), err)
        var mt MyTime
        json.Unmarshal(d, &mt)
        fmt.Println(mt)
    }
    
    0 讨论(0)
提交回复
热议问题