登录
首页 >  Golang >  Go问答

发现 nil 指针错误:尝试从 httptest 启动未启动的服务器

来源:stackoverflow

时间:2024-02-06 10:24:21 484浏览 收藏

各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题《发现 nil 指针错误:尝试从 httptest 启动未启动的服务器》,很明显是关于Golang的文章哈哈哈,其中内容主要会涉及到等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!

问题内容

我正在尝试在我的代码中构建一个模拟httpserver。我想指定端口号,因此我使用了以下代码:

l, _ := net.listen("http", "localhost:49219")
svr := httptest.newunstartedserver(http.handlerfunc(func(w http.responsewriter, r *http.request) { ... }))
svr.listener.close()
svr.listener = l
svr.start()

但是,在 svr.start() 行,我收到一条错误消息:

panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference

显然 svr 此时不为零。我想知道为什么会出现此错误以及应该如何解决此问题?


正确答案


  • 调用 net.listen 函数时需要更新第一个参数(行:l, := net.listen("http", "localhost:49219")

  • 必须是 tcptcp4tcp6unixunixpacket,而不是 http

  • 对于ipv4,您可以使用tcp4

示例:

65bd95abbd7c

今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>