dsfs504545 2018-03-30 05:25
浏览 788
已采纳

如何使用gorm获取多个用户的数据?

Database: MySql I have a two structs as follows:

type Person struct {
    gorm.Model
    Name    string
    Address string
}

type Address struct {
    gorm.Model
    PersonID int
    Address  []Address
}

I want to fetch data of multiple persons with there adresses. I tried it like:

var result []Person
db.Table("persons").Select("persons.id,persons.created_at, persons.updated_at,persons.deleted_at,persons.name,addresses.address").Joins("inner join addresses on addresses.person_id = persons.id").Scan(&result)

I got result:

[
  {
    ID: 13,
    CreatedAt: '2018-03-28T16:25:43+05:30',
    UpdatedAt: '2018-03-28T16:28:31+05:30',
    DeletedAt: null,
    Name: 'roshan',
    Address: null
  },
  {
    ID: 13,
    CreatedAt: '2018-03-28T16:25:43+05:30',
    UpdatedAt: '2018-03-28T16:28:31+05:30',
    DeletedAt: null,
    Name: 'roshan',
    Address: null
  },
  {
    ID: 14,
    CreatedAt: '2018-03-28T16:25:43+05:30',
    UpdatedAt: '0001-01-01T00:00:00Z',
    DeletedAt: null,
    Name: 'kunal2',
    Address: null
  }
];

expexted result is

[
  {
    ID: 13,
    CreatedAt: '2018-03-28T16:25:43+05:30',
    UpdatedAt: '2018-03-28T16:28:31+05:30',
    DeletedAt: null,
    Name: 'roshan',
    Address: ['pune', 'nagpur']
  },
  {
    ID: 14,
    CreatedAt: '2018-03-28T16:25:43+05:30',
    UpdatedAt: '0001-01-01T00:00:00Z',
    DeletedAt: null,
    Name: 'kunal2',
    Address: ['New York']
  }
];
  • 写回答

1条回答 默认 最新

  • dsgfdgh14569 2018-03-30 09:42
    关注

    First of all you probably should change your model declarations to this

    type Person struct {
        gorm.Model
        Name    string
        Address []Address
    }
    
    type Address struct {
        gorm.Model
        PersonID int
    }
    

    And then to preload associations you can use this query

    var person []Person
    
    err := db.Preload("Address").Find(&person).Error
    

    where you person param will be te results from db with preloaded addresses

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大