gpt4 book ai didi

go - 可以在 Go 中对结构进行动态编码吗?

转载 作者:行者123 更新时间:2023-12-01 22:43:28 25 4
gpt4 key购买 nike

我有一些冗余逻辑要提取到一个实用程序中以将请求绑定(bind)到结构,我希望我能以某种方式动态地做到这一点。我想要的是基本上一般地将任何请求绑定(bind)到我传入的结构类型。这将大大减少我程序中的一些代码。

我可以有一个 Task struct 或者我可以有一个 Information结构。所有这些信息都通过 JSON 进入服务器,但我希望能够传入类型名称并让它自动绑定(bind)以减少我正在编写的代码。

示例调用者

func StoreTask(dbWrapper *database.DB) func(http.ResponseWriter, *http.Request) {
return func(rw http.ResponseWriter, r *http.Request) {
data := &utilities.DynamicStruct{entities.Task, r, rw}
utilities.PersistRequest(data)
}
}

这是我的小例子:
type DynamicStruct struct {
cType interface{}
writer http.ResponseWriter
req *http.Request
}

func PersistRequest(s *DynamicStruct, decoderOpts *DecoderMetadata) {
r := s.req
rw := s.writer

// I want the struct to basically be able to take any type
data := s.cType

err := r.ParseForm()
if err != nil {
log.Printf("HTTP %d - %s", 500, err.Error())
http.Error(rw, err.Error(), 500)
}

// This is where the dynamic nature of the param would come into play that I'm looking for..
newTask := new(data)

decoder := utilities.GenerateDecoder(decoderOpts)

// Using gorilla/schema here
err = decoder.Decode(newTask, r.Form)

if err != nil {
log.Printf("HTTP %d - %s", 500, err.Error())
http.Error(rw, err.Error(), 500)
}

rw.Header().Set("Content-Type", "application/json")
json.NewEncoder(rw).Encode(newTask)


}

最佳答案

当你像这样编码或解码未知结构时,你不需要做任何额外的事情:只需将接口(interface)值传递给编码器,它就会使用反射对底层值进行编码,或者调用 MashalJSON如果它实现了自定义编码(marshal)拆收器。

dynamicStruct.cType=someStructValue

如果要解码,则可以通过将指针传递给结构来执行相同的操作:
dynamicStruct.cType=&SomeStruct{}

然后你不需要创建一个未知类型的新实例,只需将接口(interface)传递给 unmarshal。

关于go - 可以在 Go 中对结构进行动态编码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60252254/

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