Skip to content

Conversation

@hidu
Copy link

@hidu hidu commented Aug 15, 2024

What type of PR is this? (check all applicable)

  • Refactor
  • Feature
  • Bug Fix
  • Optimization
  • Documentation Update
  • Go Version Update
  • Dependency Update

Description

In Go 1.22.0 The http.Request type added methods PathValue and SetPathValue which are used to handle named path wildcards in URL routes.

func ArticlesCategoryHandler(w http.ResponseWriter, r *http.Request) {
    w.WriteHeader(http.StatusOK)
    fmt.Fprintf(w, "Category: %v\n", r.PathValue("category"))  // by r.PathValue
}

Related Tickets & Documents

  • Related Issue #
  • Closes #

https://pkg.go.dev/net/[email protected]#Request.PathValue

Added/updated tests?

  • Yes
  • No, and this is why: please replace this line with details on why tests
    have not been included
  • I need help with writing tests

Run verifications and test

  • make verify is passing
  • make test is passing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant