我想在接收到 http 調(diào)用時使用普通 func 而不是 HttpHandler,所以我應(yīng)該動態(tài)新參數(shù)來調(diào)用 func。package mainimport ( "fmt" "reflect")func main() { invoke(test)}func invoke(function interface{}) { funcType := reflect.TypeOf(function) if funcType.Kind() == reflect.Func { paramType := funcType.In(0).Elem() input := reflect.New(paramType) input.Elem().Field(0).SetString("neason") input.Elem().Field(1).SetInt(18) fmt.Println(input) funcValue := reflect.ValueOf(function) params := []reflect.Value{ reflect.ValueOf(input), } funcValue.Call(params) }}type Input struct { Name string Age int}type Output struct { Name string Age int}func test(input *Input) Output { return Output{ Name: input.Name, Age: input.Age, }}它會恐慌:反射:使用 *reflect.Value 作為類型 *main 調(diào)用。輸入如何動態(tài)反射。新參數(shù)并調(diào)用 func ?
1 回答

慕神8447489
TA貢獻1780條經(jīng)驗 獲得超1個贊
你有一個額外的reflect.Value
包裝層。input
直接作為參數(shù)使用。它已經(jīng)是一個reflect.Value
.
params := []reflect.Value{input}
https://go.dev/play/p/dpIspUFfbu0
- 1 回答
- 0 關(guān)注
- 101 瀏覽
添加回答
舉報
0/150
提交
取消