英文: When trying to get a structure with string and uint32 types through a gRPC request, it is all sh...
Golang Gorm Fiber – 我如何将我定义的别名发送到我的索引模板中?
英文: Golang Gorm Fiber - How can I send the name I defined as alias to my index template? 问题 我正在尝试从PH...
gorm不会更新时间戳字段。
英文: gorm does not update timestamp field 问题 这是我的模型: type User struct { ID uuid.UUID `gorm:"prima...
使用GORM与自定义的关联表和外键
英文: Using GORM with custom join table and foreign keys 问题 我正在使用GORM创建数据库模型。我有三个模型遇到了问题。它们是User、Email...
在Gorm中,你可以如何同时使用preload和distinct?
英文: In Gorm how can I use preload and distinct together? 问题 我在我的Go代码中有以下嵌套结构体: type Notification str...
Gorm在使用表单数据文件上传时出现创建错误。
英文: Gorm Create Error with Form-Data File Upload 问题 我正在尝试在PostgreSQL服务器中创建一条记录。请求以多部分格式的文件数据发送给我。在将文...
Gorm查询在成功提交之前持续了一分钟以上。
英文: Gorm query lasts over a minute before successfully committing 问题 我正在使用控制器-服务-存储库架构编写一个简单的 Golang...
在gorm中,列索引0的扫描错误,名称为xxxxx:目标不是指针。
英文: Scan error on column index 0 , name xxxxx: destination not a pointer" gorm 问题 我遇到了这个错误 sql:...
GORM 条件查询的第一个示例
英文: GORM First Query with Condition 问题 我想咨询一下关于使用 GORM 的 db.First() 方法的条件查询。 好的,这是一个例子: if err := re...
GORM无法保存has-many结构体。
英文: GORM not saving has-many structs 问题 我有一个名为room的实体,它有关联的members。当我使用GORM保存room时,即使切片中有多个成员,也只保存一个...