英文: Why does the behavior of chan change after I use gorm to connect to the database 问题 一个正常的例子是这样的:...
在GORM中禁用CreatedAt、UpdatedAt和DeletedAt字段。
英文: Disable CreatedAt UpdatedAt DeletedAt Fields in GORM 问题 我正在使用GORM,并且正在映射传统表格。 默认情况下,GORM有以下结构体: ...
无法从Docker Compose中的其他服务解析Postgres主机名
英文: Can not resolve postgres hostname from other service on docker-compose 问题 我有一个docker-compose文件,其...
如何存储来自DTO Gorm的数据
英文: How do I store the data from DTO Gorm 问题 我正在使用golang的Fiber和GORM。我试图将数据从DTO存储起来。例如,我创建了一个名为"...
Go GORM – 在更新之前,字段具有旧值
英文: Go GORM - BeforeUpdate fields have old values 问题 我有一个使用GORM的Go应用程序,我正在尝试在每次更新用户密码字段时对其进行哈希处理。 为了...
如何在Gorm中删除关联关系的相关模型?
英文: How to delete related models of a relation in Gorm? 问题 所以基本上我有3个模型:User(用户)、Profile(个人资料)和Post(帖...
如何在Gorm中支持枚举值
英文: How to support Enum value in Gorm 问题 你好,我是你的中文翻译助手。根据你提供的信息,你在使用Go和Gorm构建一个简单的Web服务,使用Postgres作为...
在Gorm中,级联删除(On delete cascade)不按预期工作。
英文: On delete cascade not working as intended in Gorm 问题 所以我对Gorm非常陌生,正在尝试使用它,但似乎无法使级联删除起作用。这是我的模型: ...
在GORM中,如何配置特定时区的autoCreateTime和autoUpdateTime?
英文: In GORM, how to configure autoCreateTime and autoUpdateTime in specific timezone? 问题 我的MariaDB数据...
使用 RAW 内置函数 GORM 时出现未声明的名称 const。
英文: Undeclared Name const when using RAW Built-in function GORM 问题 我想在我的个人项目中使用GORM中的Raw函数作为要求。 这是我的...
47