我正在使用 Go 开发 REST API,但我不知道如何进行路径映射并从中检索路径参数。
我想要这样的东西:
func main() {
http.HandleFunc("/provisions/:id", Provisions) //<-- How can I map "id" parameter in the path?
http.ListenAndServe(":8080", nil)
}
func Provisions(w http.ResponseWriter, r *http.Request) {
//I want to retrieve here "id" parameter from request
}
http如果可能的话,我只想使用包而不是 Web 框架。
皈依舞
智慧大石
忽然笑
相关分类