gpt4 book ai didi

go - 从 postman 检查时获取 404 页面未找到错误

转载 作者:数据小太阳 更新时间:2023-10-29 03:12:23 26 4
gpt4 key购买 nike

我正在使用 goapp serve 运行以下代码。从 postman 检查时,以某种方式出现 404 找不到页面 错误。你能帮我解决这个问题吗

    package hello

import (
"fmt"
"net/http"

"github.com/julienschmidt/httprouter"
)

func Index(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
fmt.Fprint(w, "Welcome!\n")
}

func Hello(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
fmt.Fprintf(w, "hello, %s!\n", ps.ByName("name"))
}

func init() {
router := httprouter.New()
router.GET("/", Index)
router.GET("/hello/:name", Hello)
//log.Fatal(http.ListenAndServe(":8080", router))

}

在 postman 传递端点http://localhost:8080/hello/hyderabad

最佳答案

扩展我上面的评论:处理程序函数(或来自 julienschmidt/httprouter 的路由器)不会自行注册。相反,它需要向 http 服务器注册。

最简单的方法通常是使用以下命令向默认 ServeMux 注册:http.Handle("/", router)

因此,将 init 函数更改为以下内容将起作用:

   func init() {
router := httprouter.New()
router.GET("/", Index)
router.GET("/hello/:name", Hello)
http.Handle("/", router)
}

关于go - 从 postman 检查时获取 404 页面未找到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47976333/

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