go 如何写一个通用的方法,将一个结构体切片,根据 id 字段,转为 map 结构 2023-02-20 rt比如:定义结构体 type S struct { ID int64 Name string }有切片[]S{ { ID: 1, Name: "1", }, { ID: 2,…