英文: How to use a certificate from a certificate store and run TLS in gin framework in go? 问题 我的当前应用程...
如何在Go中访问请求特定的数据?
英文: How to access Request Specific Data in Go? 问题 我有一个用Go编写的API,并且我正在使用gin-gonic框架来实现我的端点。我正在遵循清晰架构的...
Go Gin converting json response to base64
英文: Go Gin converting json response to base64 问题 我正在尝试将数据库查询数据作为JSON响应发送。以下是我的控制器代码: import ( "f...
What is the correct way to save post data (with integer and string values) in the database golang?
英文: What is the correct way to save post data (with integer and string values) in the database golan...
Golang/gin从gin.Context解析JSON
英文: Golang/gin parse JSON from gin.Context 问题 我从gin文档中了解到,你可以将JSON绑定到一个结构体中,例如: type Login struct { ...
从mongoDB中使用go-gin和mgo获取投票时出现错误。
英文: Errors Getting polls by id from mongoDB with go-gin and mgo 问题 如何使用go-gin和MongoDB按ID查询投票?我尝试了几种方...
如何测试gin应用程序中的主要函数?
英文: How to test main function in gin application? 问题 你好!以下是翻译好的内容: 如何测试 func main 函数?像这样: func main(...
type *gin.Context没有SaveUploadedFile字段或方法。
英文: type *gin.Context has no field or method SaveUploadedFile 问题 我的代码在我的电脑上运行正常,但是在将代码移动到Debian服务器后,...
如何在Go Gin中从JSON中获取发布的文件?
英文: How to get file posted from JSON in go gin? 问题 我想保存由JSON发布的图像文件。 这是发布的结构: type Article struct { ...
在Go语言中,使用:=会导致未使用的错误,但使用=则不会。
英文: using := gives unused error but using = don't in Go 问题 我有一段代码,在使用:=时出现错误,但是当我使用=时,它可以正常编译。根据...
26