Golang : Meaning of omitempty in struct's field tag
Another quick note for myself and maybe useful for you as well. This is about the meaning of the word omitempty in a struct's field tag. Basically, it is used to tell the unmarshaller or marshaller to ignore empty fields.
For example, you created a program that will eat struct data and poop out JSON file. There are some struct data with empty field. Adding the word omitempty
will instruct the the marshaller to skip the empty field and proceed to the next struct record data.
type Employee struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Title string `json:"title,omitempty"`
}
You might want to know about the meaning XML attributes - attr
and how to use it at https://socketloop.com/tutorials/golang-adding-xml-attributes-to-xml-data-or-use-attribute-to-differentiate-a-common-tag-name
Reference :
See also : Golang : Adding XML attributes to xml data or use attribute to differentiate a common tag name
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+18.9k Golang : Delete duplicate items from a slice/array
+8.2k Golang : Multiplexer with net/http and map
+25.8k Golang : missing Mercurial command
+19.4k Golang : Display list of time zones with GMT
+7.6k Golang : Gorrila set route name and get the current route name
+5.6k PHP : Fix Call to undefined function curl_init() error
+10.1k Golang : Convert octal value to string to deal with leading zero problem
+17.1k Golang : How to save log messages to file?
+13.7k Golang : Query string with space symbol %20 in between
+5.7k Unix/Linux : How to find out the hard disk size?
+11.2k How to test Facebook App on localhost ?
+11.9k Golang : convert(cast) float to string