Questions tagged [go-gorm]

GORM, an ORM library specifically for the Go programming language, was created by jinzhu.

Is there a way to exclude a field during json.Marshal but not during json.Unmarshal in go language?

struct Alpha { Label text `json:"label"` ExcludeDuringSerialization string `json:"excludeDuringSerialization"` } func SerializeJSON(obj interface{}){ json.Serialize(obj) } How can I exclude the ExcludeDuringSerializa ...