我试图了解如何从docopt访问多个输入参数。解析(( 输出。
例:
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]
我只想打印出文件 1 或文件 2。
当我尝试添加时:
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
根据文档 (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)
会做到这一点。