我需要在go代码中使用config,并且想从命令行加载config路径。
我尝试:

if len(os.Args) > 1 {
        configpath := os.Args[1]
        fmt.Println("1") // For debug
    } else {
        configpath := "/etc/buildozer/config"
        fmt.Println("2")
    }

然后我使用配置:
configuration := config.ConfigParser(configpath)

当我使用参数(或不使用参数)启动go文件时,收到类似的错误
# command-line-arguments
src/2rl/buildozer/buildozer.go:21: undefined: configpath

我应该如何正确使用os.Args?

最佳答案

configPath范围之外定义if

configPath := ""

if len(os.Args) > 1 {
  configPath = os.Args[1]
  fmt.Println("1") // For debugging purposes
} else {
  configPath = "/etc/buildozer/config"
  fmt.Println("2")
}
注意configPath =内的':='(而不是if)。
这样configPathif之前定义,并且仍然可见。
在“Declarations and scope”/“Variable declarations”中查看更多信息。

10-07 17:01