2

docopt.go を使用して古いプロジェクトをリファクタリングし、コードを最小化すると、プログラムは次のようになります

package main

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

const Version = `2.0`
const Usage = `
Usage:
    serve [--port] <dir>
    serve help | --help
    serve --version 

Options:
    -p, --port       port for the sever to listen on
    -h, --help       display help information
    -v, --version    display Version
`

func check(err error) {
    if err != nil {
        panic(err)
    }
}

func main() {
    args, err := docopt.Parse(Usage, nil, true, Version, false)
    check(err)

    port := args["[--port]"].(string)

    fmt.Println(args)
    fmt.Println(port)v
}

go run ./serve.go helpただし、ヘルプメッセージを期待してプログラムを実行すると、これが表示されます

panic: interface conversion: interface is nil, not string

goroutine 1 [running]:
main.main()
    /Users/jburns/Development/Gopath/src/github.com/nyumal/serve/serve.go:31 +0x148

goroutine 2 [runnable]:
runtime.forcegchelper()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/proc.go:90
runtime.goexit()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/asm_amd64.s:2232 +0x1

goroutine 3 [runnable]:
runtime.bgsweep()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/mgc0.go:82
runtime.goexit()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/asm_amd64.s:2232 +0x1

goroutine 4 [runnable]:
runtime.runfinq()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/malloc.go:712
runtime.goexit()
    /usr/local/Cellar/go/1.4.1/libexec/src/runtime/asm_amd64.s:2232 +0x1
exit status 2

それを実行go run ./serve.go --port 5000すると同じものが返されますが、実行はgo run ./serve.go --port 5000 .戻ります

Usage:
    serve [--port] <dir>
    serve help | --help
    serve --version
exit status 1

どこで私は間違えましたか?

4

1 に答える 1

1

ポートの引数を宣言する必要があります。

const Usage = `
Usage:
    serve [--port=<arg>] <dir>
    serve help | --help
    serve --version 

Options:
    -p, --port=<arg> port for the sever to listen on
    -h, --help       display help information
    -v, --version    display Version

ポートが設定されていない場合を処理するには、2 つの値の型のアサーションを使用します。

port, ok := args["--port"].(string)
if ok {
   // port is set
}

また、マップ キーの前後の「[]」を削除します。

于 2015-01-30T05:58:33.967 に答える