2015-10-02 03:24:38 +02:00
|
|
|
---
|
|
|
|
title: Request
|
|
|
|
menu:
|
2015-10-08 22:54:31 +02:00
|
|
|
side:
|
2015-10-02 03:24:38 +02:00
|
|
|
parent: guide
|
2015-10-06 00:52:07 +02:00
|
|
|
weight: 5
|
2015-10-02 03:24:38 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
### Path parameter
|
|
|
|
|
|
|
|
Path parameter can be retrieved either by name `Context.Param(name string) string`
|
|
|
|
or by index `Context.P(i int) string`. Getting parameter by index gives a slightly
|
|
|
|
better performance.
|
|
|
|
|
|
|
|
*Example*
|
|
|
|
|
|
|
|
```go
|
|
|
|
e.Get("/users/:name", func(c *echo.Context) error {
|
|
|
|
// By name
|
|
|
|
name := c.Param("name")
|
|
|
|
|
|
|
|
// By index
|
|
|
|
name := c.P(0)
|
|
|
|
|
|
|
|
return c.String(http.StatusOK, name)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ curl http://localhost:1323/users/joe
|
|
|
|
```
|
|
|
|
|
|
|
|
### Query parameter
|
|
|
|
|
|
|
|
Query parameter can be retrieved by name using `Context.Query(name string)`.
|
|
|
|
|
|
|
|
*Example*
|
|
|
|
|
|
|
|
```go
|
|
|
|
e.Get("/users", func(c *echo.Context) error {
|
|
|
|
name := c.Query("name")
|
|
|
|
return c.String(http.StatusOK, name)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ curl -G -d "name=joe" http://localhost:1323/users
|
|
|
|
```
|
|
|
|
|
|
|
|
### Form parameter
|
|
|
|
|
|
|
|
Form parameter can be retrieved by name using `Context.Form(name string)`.
|
|
|
|
|
|
|
|
*Example*
|
|
|
|
|
|
|
|
```go
|
|
|
|
e.Post("/users", func(c *echo.Context) error {
|
|
|
|
name := c.Form("name")
|
|
|
|
return c.String(http.StatusOK, name)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ curl -d "name=joe" http://localhost:1323/users
|
|
|
|
```
|