英文: Configure a default directory path in Go with Cobra and Viper 问题 我想让我的CLI应用程序用户输入一个特定的路径,以指定他们想要...
viper动态加载配置文件存在数据竞争问题。
英文: viper dynamically loading config file has data race 问题 我想动态加载配置文件而不重新启动我的Go应用程序。我编写了下面的文件,它可以运行,...
如何使用结构体迭代遍历 yml 部分?
英文: How to iterate over yml sections with structs? 问题 我使用viper。我正在尝试从带有yml-config的结构体中获取信息。 type Con...
reading bool value using viper in Go
英文: reading bool value using viper in Go 问题 我正在使用viper来管理Go应用程序的配置和环境变量。除了布尔值之外,所有的值都从JSON配置文件中正确获取,...
在Viper中访问嵌套的YAML结构的问题
英文: Problem accessing nested YAML structure in Viper 问题 最近我尝试使用Viper和我的Cobra应用程序一起解析配置文件,但是发现无法解析内部嵌...
为什么我在调用BindPFlag时会出现空指针错误,这取决于我调用的位置?
英文: Why am I getting a nil pointer error depending on where I call BindPFlag? 问题 我刚刚开始使用Go,并且在使用Cobr...
Cobra:如何在不使用包全局变量的情况下为子命令提供上下文?
英文: Cobra: Providing context to subcommands without using package globals? 问题 我使用cobra和viper编写了一个简单的...
Viper自动环境无法读取环境变量。
英文: Viper Automatic Environment Does Not Read from Environment 问题 我正在尝试完成一个非常简单的示例,其中我使用viper从环境变量中加...
为什么 “switch t := policy.Parameter.(type)” 在使用 viper.Unmarshal() 时不起作用?
英文: why the "switch t := policy.Parameter.(type)" does not work with viper.Unmarshal() 问题 ...
如何将数组中的配置项绑定到环境变量中?
英文: How to bind config items in an array to environment variables 问题 以下是我的配置文件,采用toml格式。 [[hosts]] n...
4