Golang 格式化json忽略指定的字段

如下的结构体,格式化为json时我想忽略DataSource字段

type RealTimeData struct {
    Code           string   `json:"code"`
    Time           time.Time    `json:"time"`
    OpenPrice      float32  `json:"openPrice"`
    PrevClosePrice float32  `json:"prevClosePrice"`
    LastPrice      float32  `json:"lastPrice"`
    HighPrice      float32  `json:"highPrice"`
    LowPrice       float32  `json:"lowPrice"`
    MarketValue    float32  `json:"marketValue"`
    PER            float32  `json:"per"`    // static price/earning ration
    PBR            float32  `json:"pbr"` // price/book ration
    DataSource     string
}

如下所示,将其指定为"-"

DataSource     string   `json:"-"`
image.png

你可能感兴趣的:(Golang 格式化json忽略指定的字段)