英文: golang gin-gonic/gin framework use another param instead of callback 问题 在我的情况下,我想使用另一个参数而不是回调函数。...
如何在Go Gin中修剪查询和JSON的空白空间?
英文: How to trim white space for query and json in go gin? 问题 我有一个类似这样的结构体: type Data struct { Foo st...
gin golang: what is gin.Context.Keys
英文: gin golang: what is gin.Context.Keys 问题 我正在使用go-gin框架中的context.GetBool方法(这里)来处理一些查询参数。但是它没有按照预期工...
在Go API中,我得到了错误消息和结果。
英文: getting error message along with result in go api 问题 我有一个API中的路由,可以通过roles获取用户。在这个路由中,如果我输入用户的名称...
如何在Gin中添加具有相同路径前缀和参数的不同端点?
英文: How to add different endpoints with the same path prefix and param in Gin? 问题 我使用Gin框架在Go中构建了一个A...
dsnap.Data()如果文档不存在,则返回nil。
英文: dsnap.Data() returns nil if the document does not exist 问题 我已经编写了一个名为GetUser的控制器,用于根据查询中提供的id从数据...
Golang:使用map的Gin路由器只选择一个处理程序。
英文: Golang: Gin router with map is picking only one handler 问题 package main import ( "fmt" &...
从结构标签验证返回自定义错误消息
英文: Return custom error message from struct tag validation 问题 我正在使用Go 1.17和Gin,我想在将数据发送到数据库之前实现结构体验证...
无法安装gin-gonic:c.engine.AppEngine未定义(类型*Engine没有字段或方法AppEngine)
英文: Can't install gin-gonic: c.engine.AppEngine undefined (type *Engine has no field or method A...
如何处理 Gin 中间件中的错误
英文: How to handle errors in Gin middleware 问题 我想在每个路由上捕获所有的HTTP错误,而不需要每次都重写400、404、500等错误处理逻辑。所以我在每个...
26