Gong provides many functions to bind and query data from the current request.
Use gong.PathParam(context.Context, string) to get a dynamic path paramteter from the current request.
// Route definition
gong.NewRoute("/user/{name}", UserComponent)
// Access parameter in your component
name := gong.PathParam(ctx, "name")
Use gong.QueryParam(context.Context, string) to get a query parameter from the current request.
// URL: https://my-app.com?name=Joe
name := gong.QueryParam(ctx, "name")
Use gong.FormValue(context.Context, string) to get a form value from the current request.
// Form Data: name=Joe
name := gong.FormValue(ctx, "name")