Checks whether this request's stated list of "accepted" media types includes the specified type. Returns true or false.
req.accepts(type);
req.accepts('application/json');
// -> true
req.accepts('json');
// -> true
- See the
acceptsmodule for the finer details of the header parsing algorithm used in Sails/Express/Koa/Connect.
If you notice something we've missed or could be improved on, please follow this link and submit a pull request to the sails-docs repo. Once we merge it, the changes will be reflected on the website the next time it is deployed.