我需要在我的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)
# command-line-arguments src/2rl/buildozer/buildozer.go:21: undefined: configpath
我该如何正确使用os.Args?
在if的范围之外定义configPath.
原文链接:https://www.f2er.com/go/242077.htmlconfigPath := "" 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”.