gpt4 book ai didi

sql - Golang 数据库管理器 api 概念,类型断言错误

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

创建数据库管理器 API 以通过 API 获取数据的基本概念。我正在使用 GORM 获取 strcuts 实例的数据。所以有 300-400 个结构代表表。

type Users struct {
ID int64
Name string
}

type Categories struct {
ID int64
Category string
}

下一步我将实现一个函数,该函数按表名返回正确的结构实例,我通过 API 端点参数获得的内容。

func GetModel(model string) interface{} {
switch model {
case "users":
return Users{}
case "categories"
return Categories{}
}
return false
}

之后是一个操作结构,其中唯一的一个字段是数据库。有一些方法,例如我想在其中使用 GORM db.Last(&users) 函数的 GetLast() 。

func (o Operations) GetLast(model string) interface{} {
modelStruct := GetModel(model)
.
.
.
return o.DB.Last(&modelStruct)
}

有几点所以这是我不知道的。当前的解决方案不起作用,因为在这种情况下它是一个接口(interface){} 我需要进行类型断言 more info in this question .类型断言如下所示:

func (o Operations) GetLast(model string) interface{} {
modelStruct := GetModel(model)
.
test := modelStruct.(Users)
.
return o.DB.Last(&test)
}

这个解决方案有效,但在这种情况下我失去了模块化。我尝试使用 reflect.TypeOf(modelStruct),但它也不起作用,因为 reflect.TypeOf 的结果是 reflect.Type,而不是 golang 类型。

最佳答案

基本上我解决了这个问题,将模型作为指针获取,然后将其作为 json 文件返回。

所以我的模型如下:

var Models = map[string]interface{}{
"users": new(Users),
"categories": new(Categories),
}

它是按表类型返回一个新模型。我可以为 gorm First() 函数使用什么。然后json Marshal它,然后返回。

func (o Operation) First(model string, query url.Values) string {
modelStruct := Models[model]
db := o.DB
db.First(modelStruct)
response, _ := json.Marshal(modelStruct)
clear(modelStruct)
return string(response)
}

在返回之前,我清除了模型指针,因为 First() 函数存储了最新查询的回调。

func clear(v interface{}) {
p := reflect.ValueOf(v).Elem()
p.Set(reflect.Zero(p.Type()))
}

关于sql - Golang 数据库管理器 api 概念,类型断言错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42038782/

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