res.badRequest()

This method is used to send a 400 (“Bad Request”) response back down to the client indicating that the request is invalid. This usually means it contained invalid parameters or headers, or tried to do something impossible based on your app logic.

Usage

  1. return res.badRequest();

Or:

  • return res.badRequest(data);
  • return res.badRequest(data, pathToView);

Details

Like the other built-in custom response modules, the behavior of this method is customizable.

By default, it works as follows:

  • If the request “wants JSON“ (e.g. the request originated from AJAX, WebSockets, or a REST client like cURL), Sails will send the provided error data as JSON. If no data is provided a default response body will be sent (the string "Bad Request").
  • If the request does not “want JSON” (e.g. a URL typed into a web browser), Sails will attempt to serve one of your views.
    • If a specific pathToView was provided, Sails will attempt to use that view.
    • Alternatively if pathToView was not provided, Sails will try to guess an appropriate view (see res.view() for details). If Sails cannot guess a workable view, it will just send JSON.
    • If Sails serves a view, the data argument will be accessible as a view local: data.

Example

Using the default view:

  1. if ( req.param('amount') < 500 )
  2. return res.badRequest(
  3. 'Transaction limit exceeded. Please try again with an amount less than $500.'
  4. );
  5. }

With a custom view:

  1. if ( req.param('amount') < 500 )
  2. return res.badRequest(
  3. 'Transaction limit exceeded. Please try again with an amount less than $500.',
  4. 'salesforce/leads/edit'
  5. );
  6. }

Notes

  • This method is terminal, meaning it is generally the last line of code your app should run for a given request (hence the advisory usage of return throughout these docs).
  • res.badRequest() (like other userland response methods) can be overridden or modified. It runs the response method defined in /responses/badRequest.js, which is bundled automatically in newly generated Sails apps. If a badRequest.js response method does not exist in your app, Sails will implicitly use the default behavior.
  • This method is called automatically if a call to req.validate() fails any of its validation checks.
  • By default, the specified error (err) will be excluded if the app is running in the “production” environment (i.e. process.env.NODE_ENV === 'production').