gpt4 book ai didi

Golang - 为什么这个错误发生在 ServeHTTP 函数 : reflect: call of reflect. Value.Call on zero Value

转载 作者:IT王子 更新时间:2023-10-29 02:24:20 25 4
gpt4 key购买 nike

我的代码和错误信息在这里:https://gist.github.com/WithGJR/a700e5d5bd35b5c8eef2

谁能为我解释为什么会出现这个错误以及如何解决它?谢谢。

最佳答案

因为 value.MethodByName(info.controllerMethodName) 可能返回一个无效的方法,你应该检查 method.IsValid()

当发生这种情况时,您开始添加一堆 log.Println 以查看发生了什么,直到引入合适的调试器。

//编辑

router.Get("/", controllers.IndexController{}, "Index")

您正在传递一个值,func (this *IndexController) Index() 是在指针上定义的,因此您的 MethodByName 无法正常工作,请更改您的 router.Get 到:

router.Get("/", &controllers.IndexController{}, "Index")

关于Golang - 为什么这个错误发生在 ServeHTTP 函数 : reflect: call of reflect. Value.Call on zero Value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25615397/

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