Docopt - Golang - 如何访问重复的参数?

时间:2014-06-04 20:30:30

标签: go docopt

我正在尝试了解如何从docopt.Parse()输出访问多个输入参数。

示例:

package main

import (
    "fmt"
    "github.com/docopt/docopt-go"
)

func main() {
    usage := `blah.go

  Usage: 
    blah.go read <file> ...
    blah.go -h | --help | --version`

    arguments, _ := docopt.Parse(usage, nil, true, "blah 1.0", false)
    x := arguments["<file>"]
    fmt.Println(x)
    fmt.Println(x)
}

命令行:

$ go run blah.go read file1 file2
[file1 file2]
[file1 file2]

我只想打印出file1或file2。

当我尝试添加时:

fmt.Println(x[0])

我收到以下错误:

$ go run blah.go read file1 file2
# command-line-arguments
./blah.go:19: invalid operation: x[0] (index of type interface {})

https://github.com/docopt/docopt.go

1 个答案:

答案 0 :(得分:1)

根据文档(https://godoc.org/github.com/docopt/docopt.go#Parse),返回类型为map[string]interface{},这意味着arguments["<file>"]会为您提供interface{}类型的变量。这意味着您需要某种类型的类型转换才能使用它(http://golang.org/doc/effective_go.html#interface_conversions)。可能x.([]string)会做到这一点。