命令行 – 如何正确使用golang中的os.Args?

前端之家收集整理的这篇文章主要介绍了命令行 – 如何正确使用golang中的os.Args?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在我的go代码中使用config,我想从命令行加载配置路径.
我尝试:
if len(os.Args) > 1 { 
        configpath := os.Args[1]
        fmt.Println("1") // For debug
    } else {
        configpath := "/etc/buildozer/config"
        fmt.Println("2")
    }

然后我用config:

configuration := config.ConfigParser(configpath)

当我使用参数(或没有)启动我的go文件时,我收到类似的错误

# command-line-arguments
src/2rl/buildozer/buildozer.go:21: undefined: configpath

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

在if的范围之外定义configPath.
configPath := ""

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

注意if中的’configPath ='(而不是:=).

这样就可以在之前定义configPath,并且在if之后仍然可见.

更多信息请参见“Declarations and scope”/“Variable declarations”.

原文链接:https://www.f2er.com/go/242077.html

猜你在找的Go相关文章