3 Star 5 Fork 3

三三物联网/ssiot-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
translate.go 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
三三物联网 提交于 2022-12-29 09:28 . up
package pkg
import (
"reflect"
)
func Translate(form, to interface{}) {
fType := reflect.TypeOf(form)
fValue := reflect.ValueOf(form)
if fType.Kind() == reflect.Ptr {
fType = fType.Elem()
fValue = fValue.Elem()
}
tType := reflect.TypeOf(to)
tValue := reflect.ValueOf(to)
if tType.Kind() == reflect.Ptr {
tType = tType.Elem()
tValue = tValue.Elem()
}
for i := 0; i < fType.NumField(); i++ {
for j := 0; j < tType.NumField(); j++ {
if fType.Field(i).Name == tType.Field(j).Name &&
fType.Field(i).Type.ConvertibleTo(tType.Field(j).Type) {
tValue.Field(j).Set(fValue.Field(i))
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sansaniot/ssiot-core.git
git@gitee.com:sansaniot/ssiot-core.git
sansaniot
ssiot-core
ssiot-core
v1.4.3

搜索帮助