Skip to content

Commit 74c67c9

Browse files
committed
Add pathvalue example to README and implement PathValue handler.
1 parent 67be7d9 commit 74c67c9

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

_examples/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ chi examples
1212
* [router-walk](https://github.com/go-chi/chi/blob/master/_examples/router-walk/main.go) - Print to stdout a router's routes
1313
* [todos-resource](https://github.com/go-chi/chi/blob/master/_examples/todos-resource/main.go) - Struct routers/handlers, an example of another code layout style
1414
* [versions](https://github.com/go-chi/chi/blob/master/_examples/versions/main.go) - Demo of `chi/render` subpkg
15+
* [pathvalue](https://github.com/go-chi/chi/blob/master/_examples/pathvalue/main.go) - Demonstrates `PathValue` usage for retrieving URL parameters
1516

1617

1718
## Usage

_examples/pathvalue/main.go

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"net/http"
6+
7+
"github.com/go-chi/chi/v5"
8+
)
9+
10+
func main() {
11+
r := chi.NewRouter()
12+
13+
// Registering a handler that retrieves a path parameter using PathValue
14+
r.Get("/users/{userID}", pathValueHandler)
15+
16+
http.ListenAndServe(":3333", r)
17+
}
18+
19+
// pathValueHandler retrieves a URL parameter using PathValue and writes it to the response.
20+
func pathValueHandler(w http.ResponseWriter, r *http.Request) {
21+
userID := r.PathValue("userID")
22+
23+
// Respond with the extracted userID
24+
w.Write([]byte(fmt.Sprintf("User ID: %s", userID)))
25+
}

0 commit comments

Comments
 (0)