time.Time 필드를 사용한 JSON 생략
Go에서 json,omitempty" 주석을 사용하면 JSON에서 값이 비어 있는 필드를 제외할 수 있습니다. 그러나 이는 유효한 것으로 간주되는 0 값을 갖는 time.Time 필드에서는 작동하지 않습니다. date.
이 문제를 해결하려면 time.Time 필드를 0 값으로 두는 대신 time.Time{}으로 설정하세요. 이렇게 하면 JSON 인코더가 필드를 비어 있는 것으로 처리하게 됩니다.
다음 예를 고려하십시오.
package main import ( "encoding/json" "fmt" "time" ) type MyStruct struct { Timestamp time.Time `json:",omitempty"` Date time.Time `json:",omitempty"` Field string `json:",omitempty"` } func main() { ms := MyStruct{ Timestamp: time.Date(2015, 9, 18, 0, 0, 0, 0, time.UTC), Date: time.Time{}, Field: "", } bb, err := json.Marshal(ms) if err != nil { panic(err) } fmt.Println(string(bb)) }
출력:
{"Timestamp":"2015-09-18T00:00:00Z"}
또는, time.Time에 대한 포인터를 사용하고 이를 nil로 설정하면 동일한 효과를 얻을 수 있습니다.
type MyStruct struct { Timestamp *time.Time `json:",omitempty"` Date *time.Time `json:",omitempty"` Field string `json:",omitempty"` }
위 내용은 Go에서 `time.Time` 필드를 사용하여 `json:'omitempty'`를 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!