英文: Multiple queries to Postgres within the same function 问题 我是Go的新手,所以提前对愚蠢的问题表示抱歉! 我正在使用Gin框架,并且想在...
Golang RESTAPI 返回错误的数据
英文: Golang RESTAPI returns wrong data 问题 当我使用调试器时,"metricId"返回的Metric对象的所有值都是0或null(与输出相同)...
Docker:Go服务器无响应
英文: Docker: Go server does not respond 问题 我正在学习如何将Go应用程序进行Docker化。我创建了一个简单的REST API。 package main im...
如何测试依赖于外部文件的 Gin 处理程序?
英文: How to test a handler in Gin which depends on external file? 问题 我有一个简单的Gin服务器,其中一个路由被称为/metadata...
gin的HTMLGlob不适用**。
英文: gin HTMLGlob not applying ** 问题 我有一个使用模板的 gin v1.8.1 Go 程序。主要的 Go 文件是 cmd/app/app.go。在其中,我有以下代码:...
你可以通过Gin的上下文(context)传递一个context.Context。
英文: How can I pass a context.Context via Gin's context? 问题 我正在尝试找出在使用Gin时,使用OpenTelemetry进行跟踪时传播...
在Golang中,使用JWT(JSON Web Token)的MapClaims可以获取用户ID。
英文: golang jwt.MapClaims get user ID 问题 设置了一个简单的一对多关联,其中用户(user)有多个帖子(posts),要创建一个帖子时需要使用用户ID。因此,如何从...
如何部署一个 Go Web 应用程序
英文: How to deploy a go web application 问题 我有一些疑问,我正在Ubuntu上开发一个Go Web程序,但我的服务器是CentOS 7。 当开发完成后,我需要将...
How to solve gorm Create() panic with "invalid memory address or nil pointer dereference"?
英文: How to solve gorm Create() panic with "invalid memory address or nil pointer dereference&qu...
reflect: 在 GORM 的更新操作中调用 reflect.Value.SetString 时对 uint 值的调用
英文: reflect: call of reflect.Value.SetString on uint Value on GORM Updates operation 问题 我正在尝试使用Golan...
26