gpt4 book ai didi

Gorm 多个预加载不起作用

转载 作者:IT王子 更新时间:2023-10-29 02:10:48 25 4
gpt4 key购买 nike

大家星期一早上好!我在预加载实体时遇到问题!我正在对实体进行多次预加载。 Country 实体工作正常,但未预加载 Report。知道是什么原因造成的吗?

type Review struct {
ID int
Report Report 'gorm:"ForeignKey:ReportId"'
ReportId uint
Country Country 'gorm:"ForeignKey:CountryId"'
CountryId uint
}
func FindApprovedReviews(page int, countryId int) ([]Review, int, error) {
var reviews [] Review

// Subtract one to fix Offset but keep page number correct
page -= 1
err := db.Where("approved_at IS NOT NULL").
//TODO: Change this to a configuration file value
Limit(10).
Where("approved_by IS NOT NULL").
Where("country_id = ?", countryId).
//TODO: Change this (the 10) to a configuration value
Offset(page * 10).
Order("id desc").
Preload("Report").
Preload("Country").
Find(&reviews).
Error
if err != nil {
return nil, 0, err
}

return reviews, count, err
}

两个相关的结构体(CountryReport)简单地由gorm.Model 组成,用于测试目的。

在此先感谢您的帮助!!

编辑:我正在使用 mysql 驱动程序。

附言[...] 表示已隐藏的业务数据,但它们是工作正常的简单列。

最佳答案

刚刚意识到我正在选择与 Report 表的关系(即 FK)为空的查询。

如果关系键不为空,则工作正常。

关于Gorm 多个预加载不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47630962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com