Golang Gin“c.Param undefined(类型* gin.Context没有字段或方法Param)”

时间:2016-08-16 08:37:07

标签: go go-gin

我尝试使用作为Golang框架的Gin https://github.com/gin-gonic/gin

我从官方github复制了示例代码 就像这样。

package main

import (
   "github.com/gin-gonic/gin"
   "net/http"
)

func main() {
    router := gin.Default()

    router.GET("/user/:name", func(c *gin.Context) {
        name := c.Param("name")
        c.String(http.StatusOK, "Hello %s", name)
        })

    router.Run(":8080")
}

但是我得到了错误。

# go run main.go
# command-line-arguments ./main.go:12: c.Param undefined (type *gin.Context has no field or method Param)

有谁知道我该如何解决这个问题?

·CentOS7

·go go version.6.3 linux / amd64

编辑:

我实际上使用了滑行,但我将gin更新为全局。 并且还更新转到1.7但仍然出现相同的错误:

# go get -u -v github.com/gin-gonic/gin
github.com/gin-gonic/gin (download)
github.com/golang/protobuf (download)
Fetching https://gopkg.in/go-playground/validator.v8?go-get=1
https fetch failed: Get https://gopkg.in/go-playground/validator.v8?go-get=1: dial tcp: lookup gopkg.in on 192.168.11.1:53: dial udp 192.168.11.1:53: i/o timeout
gopkg.in/go-playground/validator.v8 (download)
Fetching https://gopkg.in/yaml.v2?go-get=1
https fetch failed: Get https://gopkg.in/yaml.v2?go-get=1: dial tcp: lookup gopkg.in on 192.168.11.1:53: dial udp 192.168.11.1:53: i/o timeout
gopkg.in/yaml.v2 (download)
github.com/manucorporat/sse (download)
Fetching https://golang.org/x/net/context?go-get=1
Parsing meta tags from https://golang.org/x/net/context?go-get=1 (status code 200)
get "golang.org/x/net/context": found meta tag main.metaImport{Prefix:"golang.org/x/net", VCS:"git", RepoRoot:"https://go.googlesource.com/net"} at https://golang.org/x/net/context?go-get=1
get "golang.org/x/net/context": verifying non-authoritative meta tag
Fetching https://golang.org/x/net?go-get=1
Parsing meta tags from https://golang.org/x/net?go-get=1 (status code 200)
golang.org/x/net (download)

# go version
go version go1.7 linux/amd64

# go run test.go
# command-line-arguments
./test.go:12: c.Param undefined (type *gin.Context has no field or method Param)

5 个答案:

答案 0 :(得分:2)

编辑: OP拥有由Glide"创建的"供应商目录。与旧版本的包。 删除该文件夹(更新供应商包)解决了问题。

Notego get永远不会检出或更新存储在供应商目录中的代码。

c.Param(key)c.Params.ByName(key)的快捷方式,请参阅c.Param(key)文档:

// Param returns the value of the URL param.
// It is a shortcut for c.Params.ByName(key)
//        router.GET("/user/:id", func(c *gin.Context) {
//            // a GET request to /user/john
//            id := c.Param("id") // id == "john"
//        })
func (c *Context) Param(key string) string {
  return c.Params.ByName(key)
}

您需要更新github.com/gin-gonic/gin包,请尝试:

go get -u github.com/gin-gonic/gin

并确保没有任何vendor并尝试删除除main.go之外的所有文件和供应商目录,然后go build(或更新您的供应商包)。

您的代码在go1.7

中正常运行
package main

import (
    "net/http"

    "github.com/gin-gonic/gin"
)

func main() {
    router := gin.Default()

    router.GET("/user/:name", func(c *gin.Context) {
        name := c.Param("name")
        c.String(http.StatusOK, "Hello %s", name)
    })

    router.Run(":8080")
}

在浏览器http://127.0.0.1:8080/user/World中打开 输出:

Hello World

答案 1 :(得分:0)

我有这个工作,但我必须导入http包:

package main

import "github.com/gin-gonic/gin"
import "net/http"

func main() {
router := gin.Default()

router.GET("/user/:name", func(c *gin.Context) {
    name := c.Param("name")
    c.String(http.StatusOK, "Hello %s", name)
    })

router.Run(":8080")
}

go version为我返回go version go1.5.3 linux/amd64

根据'./main.go:19:c.Param undefined'你的gin.go第19行似乎是错误的'脚本中的其他行是什么?

提供的脚本只有14行。

答案 2 :(得分:0)

我获得了成功。

我的目录深度的原因。 我把main.go放在" /go/myproject/src/server/main.go"并设置"导出GOPATH = / go / myproject"。

在这种情况下,我收到了错误。 但是在我改变了#go; /go/myproject/src/main.go"的main.go之后,它就可以了。

我想知道我并不认为我的目录结构是错误的。 我可以把main.go放到任何深度,不是吗?

Added2

# pwd
/go/myproject/src/server
# ls -l
total 12
-rw-r--r-- 1 1000 ftp 633  8月 17 02:52 glide.lock
-rw-r--r-- 1 1000 ftp  78  8月 17 02:51 glide.yaml
-rw-r--r-- 1 1000 ftp 254  8月 17 02:51 main.go
drwxr-xr-x 1 1000 ftp 136  8月 17 02:52 vendor
# go run main.go
# command-line-arguments
./main.go:12: c.Param undefined (type *gin.Context has no field or method Param)
# cat main.go
package main

import (
        "github.com/gin-gonic/gin"
        "net/http"
)

func main() {
        router := gin.Default()

        router.GET("/user/:name", func(c *gin.Context) {
            name := c.Param("name")
            c.String(http.StatusOK, "Hello %s", name)
        })

        router.Run(":8080")
}

但是当我不打电话给param函数时,Gin看起来很有效。

# cat main.go
package main

import "github.com/gin-gonic/gin"

func main() {
        r := gin.Default()
        r.GET("/ping", func(c *gin.Context) {
            c.JSON(200, gin.H{
                "message": "pong",
            })
        })
        r.Run(":8080")
}
# go run main.go
[GIN-debug] GET   /ping                     --> main.main.func1 (3 handlers)
[GIN-debug] Listening and serving HTTP on :8080
[GIN] 2016/08/17 - 03:01:17 | 200 |     79.238µs | [::1]:41546 |   GET     /ping

main.go设置在同一个地方。

答案 3 :(得分:0)

Got the same problem. Glide now tries to use Semantic Versioning 2.0.0, which glide hasn't update in a while, setting the version manually to latest develop fixes the issue:

- package: github.com/gin-gonic/gin
  version: f931d1ea80ae95a6fc739213cdd9399bd2967fb6

答案 4 :(得分:0)

我遇到了同样的问题 我不确定根本原因,但我通过更改

中的代码来修复它
c.Params.ByName("name")

Param()

如果您查看{{1}}方法的来源,这就是它所涵盖的内容。