UNPKG

sails

Version:

API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)

34 lines (18 loc) 493 B
# `res.location()` Sets the "Location" response header to the specified URL expression (`url`). ### Usage ```usage res.location(url); ``` ### Example ```javascript res.location('/foo/bar'); res.location('foo/bar'); res.location('http://example.com'); res.location('../login'); res.location('back'); ``` ### Notes >+ You can use the same kind of URL expressions as in `res.redirect()`. <docmeta name="displayName" value="res.location()"> <docmeta name="pageType" value="method">