MongoDB 문서 언마샬링 중 Null 무시
Mongo-Go-Driver는 MongoDB 문서를 Go 구조체로 언마샬링할 때 Null을 무시하는 여러 가지 접근 방식을 제공합니다.
1. 특정 유형에 대한 사용자 정의 디코더
2. "유형 중립" Null 인식 디코더
코드 샘플:
// Nullaware decoder for all types, setting null values to zero values type NullawareDecoder struct { DefDecoder bsoncodec.ValueDecoder ZeroValue reflect.Value } // Decodes null values to zero values, otherwise delegates to the default decoder func (nd *NullawareDecoder) DecodeValue(dctx bsoncodec.DecodeContext, vr bsonrw.ValueReader, val reflect.Value) error { if vr.Type() == bsontype.Null { if !val.CanSet() { return errors.New("value not settable") } if err := vr.ReadNull(); err != nil { return err } val.Set(nd.ZeroValue) return nil } return nd.DefDecoder.DecodeValue(dctx, vr, val) } // Register NullawareDecoder for desired types rb := bson.NewRegistryBuilder() rb.RegisterDecoder(reflect.TypeOf(""), &NullawareDecoder{bson.DefaultRegistry.LookupDecoder(reflect.TypeOf("")), reflect.ValueOf("")}) // ... (register for other types as needed) // Use the registry within a ClientOptions instance clientOpts := options.Client(). ApplyURI("mongodb://localhost:27017/"). SetRegistry(rb.Build()) // Initialize MongoDB client with customized registry to ignore nulls client, err := mongo.Connect(ctx, clientOpts)
위 내용은 Go에서 MongoDB 문서를 언마샬링할 때 Null을 무시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!