gpt4 book ai didi

go - 如何正确地与路由器 handleFunc 进行模式匹配?

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

我正在使用 gorilla web 工具包和 golang,并且有以下代码

func test(w http.ResponseWriter, r *http.Request) {
fmt.Println("test was called ..")
}

func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
mx := mux.NewRouter()
mx.HandleFunc(?, test)
http.ListenAndServe(":8080", mx)
}

我的服务器将提供一个带有表单的 html 文档,该表单将执行获取请求并发送“/?id={something}”。如何在 mx.HandleFunc 中设置模式以匹配查询以便调用测试?

我试过:

"/?id={something}, 
"/?id=",
mx.HandleFunc("/", test).Queries("id")
mx.HandleFunc("/", test).Methods("POST")

(上一个我改了相应的页面代码,让表单发帖)。

最佳答案

当使用 .Queries() 时,你需要给它一个键和一个值,比如:

mx.HandleFunc("/", test).Queries("id", "value")

您还可以使用模式作为值,例如:

mx.HandleFunc("/", test).Queries("id", "{id:[0-9]+}")

详情请看这里:http://godoc.org/github.com/gorilla/mux#Route.Queries

关于go - 如何正确地与路由器 handleFunc 进行模式匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29234122/

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