2 回答
TA贡献1851条经验 获得超5个赞
以同样的方式json.Unmarshal做:
func genericUnmarshal(file string, v interface{}) {
// File emulation.
raw := []byte(`{"a":42,"b":"foo"}`)
json.Unmarshal(raw, v)
}
游乐场:http : //play.golang.org/p/iO-cbK50BE。
您可以通过实际返回遇到的任何错误来改进此功能。
TA贡献1906条经验 获得超10个赞
Go 不支持泛型,但你可以这样写:
func genericUnmarshalForType1(file string) interface{} {
raw, err := ioutil.ReadFile(file)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
var x interface{}
if err = json.NewDecoder(raw).Decode(x); err != nil {
return nil
}
return x
}
func main() {
x := genericUnmarshalForType1("filename.json");
var t1 Type1
var t2 Type2
switch t := x.(type) {
case Type1:
t1 = t
case Type2:
t2 = t
}
}
此外,我建议您阅读有关使用和数据类型的http://attilaolah.eu/2013/11/29/json-decoding-in-go/Unmarshal。
- 2 回答
- 0 关注
- 166 浏览
添加回答
举报