postgres, go-gorm - 无法预加载数据

postgres, go-gorm - can't preload data

在我的 postgresql 上使用 gorm

查询行时,我正在尝试预加载一些数据

我在 belongs to 关联中定义了以下类型:

type MyObject struct {
    ID            uint      `grom:"column:id" json:"id"`
    Name          string    `gorm:"column:name" json:"name"`
    OwnerID       uint      `gorm:"column:owner_id" json:"owner_id"`
    Owner         Owner     `json:"owner"`
    ...
}

type Owner struct {
    ID         uint            `gorm:"column:id" json:"id"`
    Name       string          `gorm:"column:name" json:"name"`
    Config     json.RawMessage `gorm:"column:config" sql:"type:json" json:"config"`
    Components []uint8         `gorm:"column:components;type:integer[]" json:"components"`
}

和 postgres 数据库中的表,其中一行如下

my_schema.my_object

id  | name      | owner_id  | ...
----|-----------|-----------|-----
0   | testobj   | 0         | ...


my_schema.owner

id  | name      | config    | components
----|-----------|-----------|-----------
0   | testowner | <jsonb>   | {0,1,2,3}

我是 运行 使用 gorm 的以下查询:

object := &models.MyObject{}

result := ls.Table("my_schema.my_object").
    Preload("Owner").
    Where("id = ?", "0").
    First(object)    

但结果是,在 object 中我得到以下结构:

{"id": 0, "name": "testobj", "owner_id":0, "owner": {"id": 0, "name": "", "config": nil, "components": nil}}

我没有收到任何类型的错误或警告 外键关系是在数据库创建 sql 脚本

中指定的

通过为我的每个模型实现 TableName() 方法,我能够实现我想要的效果:

type MyObject struct {
    ID            uint      `grom:"column:id" json:"id"`
    OwnerID       uint      `gorm:"column:owner_id" json:"owner_id"`
    Owner         Owner     `json:"owner"`
    ...
}

func (MyObject) TableName() {
    return "my_schema.my_object"
}

type Owner struct {
    ID         uint            `gorm:"column:id" json:"id"`
    ...
}

func (Owner) TableName() {
    return "my_schema.owner"
}

然后,我可以在如下查询中使用它:

myObject := &models.MyObject{}
result := ls.Model(myObject).
    Where("id = ?", id).  //assume any valid value for id
    First(myObject).
    Related(&myObject.Owner)

return myObject, processResult(result)

最后,当向我的服务器发出 MyObject 请求时,我得到了数据库中相关 Owner 对象的所有数据:

$ curl "http://localhost:8080/api/objetcs/related/1" | jq  // passing 1 as object id value in url params
{
  "id": "1", // taken from UrlParam
  "name": "testobj",
  "owner": {
    "id": "1", // using foreign key owner_id
    "name": "testowner",
    "config": configJson // json object taken from row in my_schema.owner table in the DB
    }
  }
}