sails
Version:
API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)
40 lines (18 loc) • 801 B
Markdown
# `req.path`
The URL pathname from the [request URL string](http://nodejs.org/api/http.html#http_message_url) 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`](https://sailsjs.com/documentation/reference/request-req/req-url).
<docmeta name="displayName" value="req.path">
<docmeta name="pageType" value="property">