我在读取 YAML 文件时遇到问题。我认为这是文件结构中的东西,但我不知道是什么。YAML 文件:conf: hits:5 time:5000000代码:type conf struct { hits int64 `yaml:"hits"` time int64 `yaml:"time"`}func (c *conf) getConf() *conf { yamlFile, err := ioutil.ReadFile("conf.yaml") if err != nil { log.Printf("yamlFile.Get err #%v ", err) } err = yaml.Unmarshal(yamlFile, c) if err != nil { log.Fatalf("Unmarshal: %v", err) } return c}
3 回答
- 3 回答
- 0 关注
- 288 浏览
添加回答
举报
0/150
提交
取消