GORM .Save 不存储与数据库的“一个对一”关系
来源:stackoverflow
时间:2024-02-06 16:15:25 196浏览 收藏
小伙伴们有没有觉得学习Golang很有意思?有意思就对了!今天就给大家带来《GORM .Save 不存储与数据库的“一个对一”关系》,以下内容将会涉及到,若是在学习中对其中部分知识点有疑问,或许看了本文就能帮到你!
问题内容
我有结构:
type book struct { gorm.model title string `json:"title"` author string `json:"author"` description string `json:"description"` category string `json:"category"` publisher string `json:"publisher"` authorscard authorscard `gorm:"foreignkey:bookid" json:"authorscard"` } type authorscard struct { //gorm.model // i purposely don't want to use gorm.model id uint `gorm:"primarykey"` bookid uint name string `json:"name"` age int `json:"age"` yearofbirth int `json:"year"` biography string `json:"biography"` }
我正在尝试制作更新功能:
// controller.go func updatebook(ctx *gin.context) { enablecors(&ctx.writer) id := ctx.param("id") var updatebook = &models.book{} if err := ctx.bindjson(updatebook); err != nil { ctx.abortwithstatus(http.statusbadrequest) log.fatal(err) } else { repository.updatebook(updatebook, id) ctx.json(http.statusok, updatebook) log.println(updatebook) } }
//repository.go func updatebook(updatebook *models.book, id string) { book, db := getbookbyid(id) if updatebook.title != "" { book.title = updatebook.title } if updatebook.author != "" { book.author = updatebook.author } if updatebook.publisher != "" { book.publisher = updatebook.publisher } if updatebook.description != "" { book.description = updatebook.description } if updatebook.category != "" { book.category = updatebook.category } if updatebook.authorscard.name != "" { book.authorscard.name = updatebook.authorscard.name } if updatebook.authorscard.age != 0 { book.authorscard.age = updatebook.authorscard.age } if updatebook.authorscard.yearofbirth != 0 { book.authorscard.yearofbirth = updatebook.authorscard.yearofbirth } if updatebook.authorscard.biography != "" { book.authorscard.biography = updatebook.authorscard.biography } db.save(&book) // same with db.preload("authorscard").save(&book) }
问题是:当我发出 put 请求时,我收到完全更新的数据。当我尝试发出 get 请求时,除了相关的 authorscard 之外,我的所有字段都已更新。
put 响应: 200 代码
{ "id": 0, "createdat": "0001-01-01t00:00:00z", "updatedat": "0001-01-01t00:00:00z", "deletedat": null, "title": "test", "author": "author", "description": "something", "category": "category", "publisher": "pb", "authorscard": { "id": 0, "bookid": 0, "name": "updated", "age": 22, "year": 1999, "biography": "biography updated" } }
之后得到回复:
[ { "ID": 1, "CreatedAt": "2022-06-29T14:57:37.489639+03:00", "UpdatedAt": "2022-06-29T15:50:11.578724+03:00", "DeletedAt": null, "title": "Test", "author": "author", "description": "something", "Category": "Category", "publisher": "PB", "authorscard": { "ID": 1, "BookID": 1, "name": "test", "age": 23, "year": 1999, "biography": "23fdgsdddTEST" } } ]
如您所见,“authorscard”没有改变。请问有人可以告诉我我做错了什么吗?
正确答案
您需要明确告诉 gorm 存储/更新关联。
db.Session(&gorm.Session{FullSaveAssociations: true}).Updates(&book)
好了,本文到此结束,带大家了解了《GORM .Save 不存储与数据库的“一个对一”关系》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习