Go 1.16 即将发布,这些变更你需要知道
tag 设置标识。 如果像是以前,量比较多就会变成: type MyStruct struct { Field1 string `json:"field_1,omitempty" bson:"field_1,omitempty" xml:"field_1,omitempty" form:"field_1,omitempty" other:"value"` } 但在 Go1.16 及以后,就可以通过合并的方式: type MyStruct struct { Field1 string `json,bson,xml,form:"field_1,omitempty" other:"value"` } 方便和简洁了不少。 总结 在本次 Go1.16 中带来了不少小优化和新的特性支持。离 Go1.18 的...阅读全文