在Go中使用Gin Gonic框架时无效接收方错误



我正在尝试使用外部(非匿名)函数在我的基于Gin的web服务器的路由,如下所示:

package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
router := gin.Default()
router.GET("/hi/", Hi)
router.Run(":8080")
}
func (c *gin.Context) Hi() {
c.String(http.StatusOK, "Hello")
}

但是我得到两个错误:

./main.go:13:23: undefined: Hi
./main.go:18:6: cannot define new methods on non-local type gin.Context

我想知道如何在我的端点处理程序中使用匿名函数?到目前为止,我找到的所有文档都使用了匿名函数。

谢谢!

只能在声明该类型的同一个包中为该类型定义新方法。也就是说,您不能向gin.Context添加新方法。

你应该这样做:

func Hi(c *gin.Context) {
...
package main
import "github.com/gin-gonic/gin"
func main() {
router := gin.Default()
router.GET("/hi", hi)
var n Node
router.GET("/hello", n.hello)
router.GET("/extra", func(ctx *gin.Context) {
n.extra(ctx, "surprise~")
})
router.Run(":8080")
}
func hi(c *gin.Context) {
c.String(200, "hi")
}
type Node struct{}
func (n Node) hello(c *gin.Context) {
c.String(200, "world")
}
func (n Node) extra(c *gin.Context, data interface{}) {
c.String(200, "%v", data)
}

相关内容

  • 没有找到相关文章

最新更新