这里主要引用的是uber的三方库:https://github.com/uber-go/config
有如下config.yml文件需要读取:
test1: example
test2:
field1: a
field2: b
调用三方库代码如下:
var conf config.Provider = config.NewYAMLProviderFromFiles("config.yml")//这里传...string,即0个或多个文件
value:= conf.Get("test1")//不区分文件中的大小写,下同
if !value.HasValue(){
panic("missing config: test1")
}
test1 := value.String()
test2 := &Test{}
if err := conf.Get("test2").Populate(test2); err != nil{//这里一定要传指针
panic(err)
}
fmt.Printf("[Config] LoadAppConf \n%+s\n", test)
y, _ := yaml.Marshal(test)//引自"github.com/go-yaml/yaml"包
fmt.Printf("[Config] LoadConf \n%+s\n", y)
type test struct{
Field1 string//这里一定要大写
Field2 string//这里一定要大写
}
有疑问加站长微信联系(非本文作者)