标签: go mongo-go
我有原始的json:
{ "@timestamp":"2019-05-05T19:54:00.455+08:00" }
并且我已经定义了struct:
type A struct { Timestamp string bson:"@timestamp" }
如何使用bson.UnmarshalExtJSON实现它?
bson.UnmarshalExtJSON