4

我尝试使用 Gin,它是 Golang 的框架。
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版本go1.6.3 linux/amd64

编辑:

我实际上使用滑翔,但我将杜松子酒更新为全局。并且还将 Go 更新到 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)
4

5 回答 5

2

编辑:OP 有“由 Glide 创建的供应商目录”和旧版本的包。并通过删除该文件夹(更新供应商包)解决了问题。

注意go get永远不要签出或更新存储在供应商目录中的代码。


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

// 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.gogo 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
于 2016-08-16T09:07:41.563 回答
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 行长。

于 2016-08-16T08:49:16.897 回答
0

我得到了成功。

原因是我的目录深度。我将 main.go 放在“/go/myproject/src/server/main.go”并设置“export GOPATH=/go/myproject”。

在这种情况下,我得到了错误。但是在我在“/go/myproject/src/main.go”处更改了 main.go 的路径后,它就可以工作了。

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

添加2

# 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 设置在同一个地方。

于 2016-08-17T01:20:58.937 回答
0

遇到了同样的问题。Glide 现在尝试使用 Semantic Versioning 2.0.0,glide 有一段时间没有更新,手动将版本设置为最新开发解决了这个问题:

- package: github.com/gin-gonic/gin
  version: f931d1ea80ae95a6fc739213cdd9399bd2967fb6
于 2016-08-31T18:31:27.117 回答
0

我遇到了同样的问题。
我不确定根本原因,但我通过更改代码来修复它

c.Param("name")

c.Params.ByName("name")

如果您查看该Param()方法的源代码,这就是它在幕后所说的。

于 2016-09-27T02:12:31.750 回答