我有下一个GORM模型
package entity
import (
"github.com/jinzhu/gorm"
)
type InterfaceEntity interface {
}
type User struct {
InterfaceEntity
gorm.Model
Name string
}
我尝试将GORM实体类型传递到基本Crud存储库中。我的基本Crud存储库:
package repository
import (
"billingo/model/entity"
"fmt"
"github.com/jinzhu/gorm"
"reflect"
)
type CrudRepository struct {
*BaseRepository
}
func NewCrudRepository(db *gorm.DB) CrudRepositoryInterface {
repo := NewBaseRepository(db).(*BaseRepository)
return &CrudRepository{repo}
}
func (c CrudRepository) Find(id uint, item entity.InterfaceEntity) entity.InterfaceEntity {
fmt.Println("--- Initial")
var local entity.User
fmt.Println("--- local: ", reflect.TypeOf(local), local)
fmt.Println("--- Item: ", reflect.TypeOf(item), item)
fmt.Println("--- Values")
c.db.First(&local, id)
fmt.Println("--- local: ", reflect.TypeOf(local), local)
c.db.First(&item, id)
fmt.Println("--- Item: ", reflect.TypeOf(item), item)
return item
}
您可以在此处看到item
方法中的local
和Find()
变量。
我通过服务的另一种方式传递了item
:
func (c CrudService) GetItem(id uint) entity.InterfaceEntity {
var item entity.User
return c.repository.Find(id, item)
}
似乎local
和item
必须相等并且行为必须相等。
但是输出是
--- Initial
--- local: entity.User {<nil> {0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} }
--- Item: entity.User {<nil> {0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} }
--- Values
--- local: entity.User {<nil> {1 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} test 1}
--- Item: entity.User {<nil> {0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} }
INFO[0000] User info user="{<nil> {0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} }" user-id=1
(/home/mnv/go/src/billingo/model/repository/CrudRepository.go:29)
[2019-05-17 17:07:37] unsupported destination, should be slice or struct
从服务传递的 item
导致消息
不受支持的目标,应为slice或struct
如何正确传递item
,我需要像local
这样的行为?
答案 0 :(得分:1)
Gorm不想将数据解组为空接口类型。
即使您传递的是实现该特定接口的结构,传递后仍将其键入为接口。您需要将该item
接口强制转换回您的User
结构。
像item.(entity.User)
答案 1 :(得分:0)
哦,我已经解决了。
现在使用Find
从服务中调用存储库方法&item
:
func (c CrudService) GetItem(id uint) entity.InterfaceEntity {
var item entity.User
return c.repository.Find(id, &item)
}
存储库方法通过item
而不使用&
:
func (c CrudRepository) Find(id uint, item entity.InterfaceEntity) entity.InterfaceEntity {
c.db.First(item, id)
return item
}