Go无法调用NewRouter()函数

时间:2016-01-20 16:27:27

标签: go gorilla mux

我是Go的新手,但我正在尝试使用Gorilla Mux创建一个RESTful API,以根据本文创建我的路由器http://thenewstack.io/make-a-restful-json-api-go/

我有一个路由器文件,其中包含以下代码。

package main

import (
    "net/http"
    "github.com/gorilla/mux"
)

type Route struct {
    Name        string
    Method      string
    Pattern     string
    HandlerFunc http.HandlerFunc
}

type Routes []Route

func NewRouter() *mux.Router {

    router := mux.NewRouter().StrictSlash(true)
    for _, route := range routes {
        router.
            Methods(route.Method).
            Path(route.Pattern).
            Name(route.Name).
            Handler(route.HandlerFunc)
    }
    return router
}

var routes = Routes{
    Route{
        "Index",
        "GET",
        "/",
        Index,
    },
}

在我的Main.go中我有这个:

package main

import (
    "log"
    "net/http"
)

func main() {
    router := NewRouter()
    log.Fatal(http.ListenAndServe(":8080", router))
}

根据我对Go的了解以及如何在另一个文件中调用方法,这应该可行。但是当我运行时:去构建Main.go我在控制台中收到此错误:

go run Main.go
# command-line-arguments
./Main.go:10: undefined: NewRouter

我已经在我的src文件夹中运行 go get ,其中包含我的所有文件以获取大猩猩,但这并没有解决它。我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

如果您的main软件包包含多个.go文件,则必须将所有文件传递给go run,例如:

go run Main.go Router.go