我通过阅读以下内容找到了答案:
http://codingdict.com/questions/63176
因此,与其尝试调用该方法,不如:
methodInterface := finalMethod.Call([]reflect.Value{})[0].Interface() method_route := methodInterface.(func(r *http.Request) (string, int)) body, pre := method_route(r)我只是获得所需的接口,然后将其转换为函数并如此调用它。
methodInterface := finalMethod.Interface() method_route := methodInterface.(func(r *http.Request) (string, int)) body, pre := method_route(r)
实际上,这就是我已经在做的事情,但是方式错误。



