Go 中,使用原生 http 包而不是框架开发 REST API 时,获取路径参数需要手动解析和映射.
要将路径与特定的请求处理程序关联起来,请使用 http.HandleFunc():
http.HandleFunc("/provisions/:id", Provisions)
这里,:id 语法表示一个变量路径中可检索的部分。
在处理函数中,您可以使用字符串操作来提取参数。考虑以下示例:
func Provisions(w http.ResponseWriter, r *http.Request) { // Use string.TrimPrefix to remove the fixed part of the path, leaving only the ID. id := strings.TrimPrefix(r.URL.Path, "/provisions/") // You can now use the 'id' variable for further processing. }
这种方法使您无需第三方路由包即可提取路径参数。然而,与使用提供内置参数映射功能的框架相比,它可能需要更多的手工劳动和错误处理。
以上是如何在 Go 的 HTTP 请求处理中提取路径参数?的详细内容。更多信息请关注PHP中文网其他相关文章!