gpt4 book ai didi

go - 获取标志值失败

转载 作者:数据小太阳 更新时间:2023-10-29 03:46:21 25 4
gpt4 key购买 nike

我用 https://github.com/spf13/cobra 创建了一个小型 Go 应用程序图书馆。

我创建了一个新标志,-t--token,当我传递这个参数时,我希望应用程序打印它。

这是我做的:

func init() {
fmt.Println("[*] Inside init()")
var token string
rootCmd.PersistentFlags().StringVarP(&token, "token", "t", "", "Service account Token (JWT) to insert")
fmt.Println(token)
}

但是当我这样运行应用程序时它不会打印它:

.\consoleplay.exe --token "hello.token"  

如何打印标志的值。

最佳答案

您不能在 init() 函数中打印 token 的值,因为 init() 函数是在第一次调用包时在运行时执行的.该值尚未分配。

因此,您必须全局声明变量并在rootCmd 命令的Run 方法中使用它。

var token string

var rootCmd = &cobra.Command{
Use: "consoleplay",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(token)
},
}

func init() {
rootCmd.Flags().StringVarP(&token, "token", "t", "", "usage")
}

关于go - 获取标志值失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57181589/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com