req.acceptsLanguage()
Returns whether this request (req) considers a certain language "acceptable".
Usage
req.acceptsLanguage(language);
Details
req.acceptsLanguage() returns true if a request has specified the given language as "acceptable" its Accept-Language header (see RFC-2616.)
This method is used by Sails internally for its implementation of internationalization and localization. The i18n hook automatically serves different content to different locales, based on the request.
Example
If a request is sent with a "Accept-Charset: utf-8" header:
req.acceptsCharset('utf-8');
// -> true
Notes
- See the
acceptsmodule for the finer details of the header parsing algorithm used in Sails/Express/Koa/Connect.- Browsers send the "Accept-Language" header automatically based on the user's language settings.
- You can expect the "Accept-Language" header to exist in most requests which originate from web browsers.