我有一个函数,它的参数类型为interface{}
。这个参数代表我的模板数据。所以在每个页面上它存储不同的数据类型(主要是结构)。我想在这个参数的数据上附加一些数据,但它是一种interface{}
类型,我做不到。
这是我尝试过的:
func LoadTemplate(templateData interface) {
appendCustomData(&templateData)
... //other functionality that is not relevant
}
func appendCustomData(dst interface{}) {
// ValueOf to enter reflect-land
dstPtrValue := reflect.ValueOf(dst)
// need the type to create a value
dstPtrType := dstPtrValue.Type()
// *T -> T, crashes if not a ptr
dstType := dstPtrType.Elem()
// the *dst in *dst = zero
dstValue := reflect.Indirect(dstPtrValue)
// the zero in *dst = zero
zeroValue := reflect.Zero(dstType)
// the = in *dst = 0
v := reflect.ValueOf(dst).Elem().Elem().FieldByName("HeaderCSS")
if v.IsValid() {
v = reflect.ValueOf("new header css value")
}
reflect.ValueOf(dst).Elem().Elem().FieldByName("HeaderCSS").Set(reflect.ValueOf(v))
//dstValue.Set(zeroValue)
fmt.Println("new dstValue: ", dstValue)
}
我可以成功获得"HeaderCSS"
价值。但我不能用另一个值替换它。我究竟做错了什么?
我的模板数据如下所示:
我有一个通用结构:
type TemplateData struct {
FooterJS template.HTML
HeaderJS template.HTML
HeaderCSS template.HTML
//and some more
}
我有另一个结构,例如:
type pageStruct struct {
TemplateData //extends the previous struct
Form template.HTML
// and some other maps/string
}
我将第二个结构作为 templateData 参数发送。
现在我得到这个错误:
“reflect.Value.Set using unaddressable value”在以下行:reflect.ValueOf(dst).Elem().Elem().FieldByName("HeaderCSS").Set(reflect.ValueOf(v))
上面的代码灵感来自这个答案:https ://stackoverflow.com/a/26824071/1564840
我希望能够从此界面附加/编辑值。知道我该怎么做吗?谢谢。