大家星期一早上好!
我在预载实体时遇到问题!我正在对实体进行多次预加载。 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)为空的查询。

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

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

10-12 23:08