为了账号安全,请及时绑定邮箱和手机立即绑定

GoLang 遍历 yaml 文件

GoLang 遍历 yaml 文件

Go
开心每一天1111 2022-12-26 16:48:48
我想知道这种逻辑在 Golang 中是否可行。我有一个这样的 yaml 文件:initSteps:  - "pip install --upgrade pip"  - "python3 --version"buildSteps:  - "pip install ."runProcess:  - "python3 test.py"并且正在使用gopkg.in/yaml.v3迭代这些步骤。我在下面有一个函数,可以将指令放入这样的地图中:func init() {    // add map from yaml to steps    f, err := ioutil.ReadFile(devrun)    if err != nil {        panic(err)    }    steps = make(map[interface{}]interface{})    err2 := yaml.Unmarshal(f, &steps)    if err2 != nil {        panic(err2)    }}如果键匹配,在我的main函数中有这个来迭代值:    for k, v := range steps {        if k == "initSteps" {            s := reflect.ValueOf(v)            for i := 0; i < s.Len(); i++ {                singleVertex := s.Index(i).Elem()                fmt.Println(singleVertex)            }        }    }我想看看是否可以从中迭代密钥,steps以及我将如何添加它。这样我可以,如果k.initSteps:来自 yaml 文件的密钥将始终相同,唯一改变的是步骤在他们之下。
查看完整描述

1 回答

?
慕沐林林

TA贡献2016条经验 获得超9个赞

您可以使用 viper 读取您的 .yaml 配置文件。简单代码示例:


import (

    "fmt"

    "github.com/spf13/viper"

)


func main() {

    readYaml()

}


func readYaml() {

    viper.SetConfigName("test")                // name of config file (without extension)

    viper.SetConfigType("yaml")                // REQUIRED if the config file does not have the extension in the name

    viper.AddConfigPath("./Examples/readyaml") // path to look for the config file in


    err := viper.ReadInConfig() // Find and read the config file

    if err != nil {             // Handle errors reading the config file

        panic(fmt.Errorf("fatal error config file: %w", err))

    }

    fmt.Println(viper.AllKeys())

    for _, i := range viper.AllKeys() {

        fmt.Println(i, viper.Get(i))

    }


}

输出:


[initsteps buildsteps runprocess]


initsteps [pip install --upgrade pip python3 --version]


buildsteps [pip install .]


runprocess [python3 test.py]


查看完整回答
反对 回复 2022-12-26
  • 1 回答
  • 0 关注
  • 118 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信