Back to Sails

`req.path`

docs/reference/req/req.path.md

12.12.2000800 B
Original Source

req.path

The URL pathname from the request URL string of the current request (req). Note that this is the part of the URL after and including the leading slash (e.g. /foo/bar), but without the query string (e.g. ?name=foo) or fragment (e.g. #foobar.)

Usage

usage
req.path;

Example

Assuming a client sends the following request:

http://localhost:1337/donor/37?name=foo#foobar

req.path will be defined as follows:

js
req.path;
// -> "/donor/37"

Notes

  • If you would like the URL query string as well as the path, see req.url.
<docmeta name="displayName" value="req.path"> <docmeta name="pageType" value="property">