web-dev-qa-db-ja.com

HTTPエラーコードの指定方法

私が試してみました:

app.get('/', function(req, res, next) {
    var e = new Error('error message');
    e.status = 400;
    next(e);
});

そして:

app.get('/', function(req, res, next) {
    res.statusCode = 400;
    var e = new Error('error message');
    next(e);
});

ただし、常に500のエラーコードがアナウンスされます。

131
tech-man

Express(バージョン4以降)のドキュメントに従って、次を使用できます。

res.status(400);
res.send('None shall pass');

http://expressjs.com/4x/api.html#res.status

<= 3.8

res.statusCode = 401;
res.send('None shall pass');
240
Dan Mandle

シンプルなワンライナー。

res.status(404).send("Oh uh, something went wrong");
64
Mike P

res.send('OMG :(', 404);だけを使用できますres.send(404);

14
Mustafa

この方法でエラー応答の作成を一元化したい:

app.get('/test', function(req, res){
  throw {status: 500, message: 'detailed message'};
});

app.use(function (err, req, res, next) {
  res.status(err.status || 500).json({status: err.status, message: err.message})
});

そのため、常に同じエラー出力形式を使用しています。

PS:もちろん、次のようなオブジェクトを作成できます 標準エラーを拡張する

const AppError = require('./lib/app-error');
app.get('/test', function(req, res){
  throw new AppError('Detail Message', 500)
});

'use strict';

module.exports = function AppError(message, httpStatus) {
  Error.captureStackTrace(this, this.constructor);
  this.name = this.constructor.name;
  this.message = message;
  this.status = httpStatus;
};

require('util').inherits(module.exports, Error);
13
Manuel Spigolon

一部の(おそらく古い?)バージョンのexpressにバンドルされているerrorHandlerミドルウェアのバージョンには、ステータスコードがハードコードされているようです。ここに文書化されたバージョン: http://www.senchalabs.org/connect/errorHandler.html 一方、あなたがしようとしていることをすることができます。したがって、おそらくexpress/connectの最新バージョンにアップグレードしてみてください。

11
catphive

Express 4.0では、彼らはそれを正しく理解しました:)

res.sendStatus(statusCode)
// Sets the response HTTP status code to statusCode and send its string representation as the response body.

res.sendStatus(200); // equivalent to res.status(200).send('OK')
res.sendStatus(403); // equivalent to res.status(403).send('Forbidden')
res.sendStatus(404); // equivalent to res.status(404).send('Not Found')
res.sendStatus(500); // equivalent to res.status(500).send('Internal Server Error')

//If an unsupported status code is specified, the HTTP status is still set to statusCode and the string version of the code is sent as the response body.

res.sendStatus(2000); // equivalent to res.status(2000).send('2000')
10
Steven Spungin

古い質問ですが、まだGoogleに掲載されています。 Expressの現在のバージョン(3.4.0)では、next(err)を呼び出す前にres.statusCodeを変更できます。

res.statusCode = 404;
next(new Error('File not found'));
8
webarnes

Express 4.0で見たことから、これは私にとってはうまくいきます。これは、認証が必要なミドルウェアの例です。

function apiDemandLoggedIn(req, res, next) {

    // if user is authenticated in the session, carry on
    console.log('isAuth', req.isAuthenticated(), req.user);
    if (req.isAuthenticated())
        return next();

    // If not return 401 response which means unauthroized.
    var err = new Error();
    err.status = 401;
    next(err);
}
8
Ido Ran

非推奨のres.send(body、status)を明示します。代わりにres.status(status).send(body)を使用してください

2
Rajeev Jayaswal

Boom パッケージを使用して、httpエラーコードの送信を処理することをお勧めします。

0
JoeTidee

私は試した

       res.status(400);
       res.send('message');

..しかし、それは私にエラーを与えていました:

(ノード:208)UnhandledPromiseRejectionWarning:エラー:ヘッダーを送信後に設定できません。

私のためのこの仕事

res.status(400).send(yourMessage);
0
Tarun Rawat