通用函数中的 Golang Cobra 命令标志未从 cli 获取值
Golang Cobra command flags in common function not getting values from cli
我正在将我的 cobra 命令 flags
移到一个函数中,以便我可以在其他命令中使用它。我可以看到命令,但是当我输入标志时,它总是 returns false
.
以下是我的代码:
func NewCommand(ctx context.Context) *cobra.Command {
var opts ListOptions
cmd := &cobra.Command{
Use: "list",
Short: "List",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println(args) // []
opts.refs = args
return List(ctx, gh, opts, os.Stdout)
},
}
cmd = GetCommandFlags(cmd, opts)
return cmd
}
// GetListCommandFlags for list
func GetCommandFlags(cmd *cobra.Command, opts ListOptions) *cobra.Command {
flags := cmd.Flags()
flags.BoolVar(&opts.IgnoreLatest, "ignore-latest", false, "Do not display latest")
flags.BoolVar(&opts.IgnoreOld, "ignore-old", false, "Do not display old data")
return cmd
}
所以当我输入以下命令时
data-check list --ignore-latest
--ignore-latest
的标志值应该是 true
但我得到 false
作为 RunE
args 中的值。我在这里遗漏了什么吗?
GetCommandFlags
是我想在其他命令中使用它的东西我不想重复相同的标志。
您正在按值将 opts
传递给 GetCommandFlags
。您应该传递一个指向它的指针,以便为标志注册的地址使用调用函数中声明的 opts
。
func GetCommandFlags(cmd *cobra.Command, opts *ListOptions) *cobra.Command {
...
}
您传递的是值参数而不是指针参数。
试试这样的:
cmd = GetCommandFlags(cmd, &opts, "")
您应该使用 func GetCommandFlags(cmd *cobra.Command, opts *ListOptions)
并像 cmd = GetCommandFlags(cmd, &opts)
那样调用函数。
您可以打印 opts.IgnoreLatest
和 opts.IgnoreOld
以查看更改后的值。
对我来说很好用。希望它也对你有用。
func NewCommand(ctx context.Context) *cobra.Command {
var opts ListOptions
cmd := &cobra.Command{
Use: "list",
Short: "List",
RunE: func(cmd *cobra.Command, args []string) error {
// fmt.Println(args) // []
fmt.Println(opts.IgnoreLatest, ", ", opts.IgnoreOld)
opts.refs = args
return List(ctx, gh, opts, os.Stdout)
},
}
cmd = GetCommandFlags(cmd, &opts)
return cmd
}
// GetListCommandFlags for list
func GetCommandFlags(cmd *cobra.Command, opts *ListOptions) *cobra.Command {
flags := cmd.Flags()
flags.BoolVar(&opts.IgnoreLatest, "ignore-latest", false, "Do not display latest")
flags.BoolVar(&opts.IgnoreOld, "ignore-old", false, "Do not display old data")
return cmd
}
我正在将我的 cobra 命令 flags
移到一个函数中,以便我可以在其他命令中使用它。我可以看到命令,但是当我输入标志时,它总是 returns false
.
以下是我的代码:
func NewCommand(ctx context.Context) *cobra.Command {
var opts ListOptions
cmd := &cobra.Command{
Use: "list",
Short: "List",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Println(args) // []
opts.refs = args
return List(ctx, gh, opts, os.Stdout)
},
}
cmd = GetCommandFlags(cmd, opts)
return cmd
}
// GetListCommandFlags for list
func GetCommandFlags(cmd *cobra.Command, opts ListOptions) *cobra.Command {
flags := cmd.Flags()
flags.BoolVar(&opts.IgnoreLatest, "ignore-latest", false, "Do not display latest")
flags.BoolVar(&opts.IgnoreOld, "ignore-old", false, "Do not display old data")
return cmd
}
所以当我输入以下命令时
data-check list --ignore-latest
--ignore-latest
的标志值应该是 true
但我得到 false
作为 RunE
args 中的值。我在这里遗漏了什么吗?
GetCommandFlags
是我想在其他命令中使用它的东西我不想重复相同的标志。
您正在按值将 opts
传递给 GetCommandFlags
。您应该传递一个指向它的指针,以便为标志注册的地址使用调用函数中声明的 opts
。
func GetCommandFlags(cmd *cobra.Command, opts *ListOptions) *cobra.Command {
...
}
您传递的是值参数而不是指针参数。
试试这样的:
cmd = GetCommandFlags(cmd, &opts, "")
您应该使用 func GetCommandFlags(cmd *cobra.Command, opts *ListOptions)
并像 cmd = GetCommandFlags(cmd, &opts)
那样调用函数。
您可以打印 opts.IgnoreLatest
和 opts.IgnoreOld
以查看更改后的值。
对我来说很好用。希望它也对你有用。
func NewCommand(ctx context.Context) *cobra.Command {
var opts ListOptions
cmd := &cobra.Command{
Use: "list",
Short: "List",
RunE: func(cmd *cobra.Command, args []string) error {
// fmt.Println(args) // []
fmt.Println(opts.IgnoreLatest, ", ", opts.IgnoreOld)
opts.refs = args
return List(ctx, gh, opts, os.Stdout)
},
}
cmd = GetCommandFlags(cmd, &opts)
return cmd
}
// GetListCommandFlags for list
func GetCommandFlags(cmd *cobra.Command, opts *ListOptions) *cobra.Command {
flags := cmd.Flags()
flags.BoolVar(&opts.IgnoreLatest, "ignore-latest", false, "Do not display latest")
flags.BoolVar(&opts.IgnoreOld, "ignore-old", false, "Do not display old data")
return cmd
}