From 441272421acfae86d3605e1533e0f5f3b9c2b1c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 3 Oct 2018 09:58:55 +0200 Subject: Cowboy 2.5.0 --- .../cowboy/2.5/manual/cowboy_req.path/index.html | 185 +++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 docs/en/cowboy/2.5/manual/cowboy_req.path/index.html (limited to 'docs/en/cowboy/2.5/manual/cowboy_req.path/index.html') diff --git a/docs/en/cowboy/2.5/manual/cowboy_req.path/index.html b/docs/en/cowboy/2.5/manual/cowboy_req.path/index.html new file mode 100644 index 00000000..6ef746c1 --- /dev/null +++ b/docs/en/cowboy/2.5/manual/cowboy_req.path/index.html @@ -0,0 +1,185 @@ + + + + + + + + + + Nine Nines: cowboy_req:path(3) + + + + + + + + + + + + + + + + +
+
+
+
+ +

cowboy_req:path(3)

+ +

Name

+

cowboy_req:path - URI path

+

Description

+
+
path(Req :: cowboy_req:req()) -> Path :: binary()
+
+

Return the path of the effective request URI.

+

The path can also be obtained using pattern matching:

+
+
#{path := Path} = Req.
+
+

Arguments

+
Req
+

The Req object.

+
+
+

Return value

+

The path is returned as a binary string. It is case sensitive.

+

Changelog

+
  • 2.0: Only the path is returned, it is no longer wrapped in a tuple. +
  • +
  • 1.0: Function introduced. +
  • +
+

Examples

+
Get the effective request URI's path
+
+
Path = cowboy_req:path(Req).
+
+

See also

+

cowboy_req(3), cowboy_req:binding(3), cowboy_req:bindings(3), cowboy_req:path_info(3)

+ + + + + + +
+ +
+ + +

+ Cowboy + 2.5 + Function Reference + +

+ + + +

Navigation

+ +

Version select

+ + +
+
+
+
+ + + + + + + + + -- cgit v1.2.3