gpt4 book ai didi

javascript - express.js 中的自定义错误处理程序未被调用

转载 作者:搜寻专家 更新时间:2023-10-30 21:21:15 24 4
gpt4 key购买 nike

我正在设置一个简单的 express.js Node 服务器,我似乎无法让我的自定义错误处理程序工作。它似乎根本没有被调用,而是调用了一些默认的 express.js 错误处理程序。

请注意,这是在 typescript 中,并且使用 mongodb,如果这很重要(不认为应该)。相关代码如下:

索引.ts:

import routes from './routes/index.ts';
import express, { Request, Response, NextFunction } from 'express';
// other imports...

type ServerErrror = {
status: number;
message: string;
}

const app = express();

// set up logging...

app.use(bodyParser.json());
app.use('/', routes);
app.use((err: ServerError, req: Request, res: Response, next: NextFunction) => { // eslint-disable-line no-unused-vars
console.error('in error handler');
res.status(err.status).send(`got error: ${err.message}`);
});

mongoose.connect(MONGODB_URI)
.then(() => {
console.log('Successfully connected to database.');
app.listen(SERVER_PORT, () => {
console.log(`Server is up and running on port ${SERVER_PORT}`);
}).on('error', error => {
console.log('Error starting server:', error);
});
}, error => {
console.log('Error connecting to database:', error);
});

routes/index.ts:

import { Router } from 'express';
import dataRoutes from './data.ts';

const router = Router();

router.use('/data', dataRoutes);

export default router;

路线/数据.ts:

import { Router } from 'express';
import Data from './models/Data';

const router = Router();

router.get('/', (_, res, next) => {
Data.find((error, data) => {
if (error) {
console.log('found an error')
next({ status: 500, message: 'got an error' });
return;
}
res.send(`Got data: ${JSON.stringify(data.map(datum => datum.toJSON()))}`);
});
});

export default router;

当我启动服务器然后使用 postman 向/data 端点发送 GET 请求时,这是服务器上的输出:

Successfully connected to database.
Server is up and running on port 1234
found an error
GET /data 500 35.289 ms - 142 // this is from morgan logging
[object Object] // no idea where this is coming from, i assume express default error handler

这是我在 postman 中看到的返回值:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>[object Object]</pre>
</body>
</html>

同样,不确定这是从哪里来的。我假设它一定是明确的默认错误处理程序。

最佳答案

你的代码有一些问题:

  • 从“./routes/index.ts”导入路由 不应有 *.ts 扩展名。
  • import dataRoutes from './data.ts'; 不应有 *.ts 扩展名。
  • ServerErrror 字母过多。

这是在我的机器上运行的简短示例。我删除了与 Mongoose 相关的代码并更改了示例,以便在单个文件中轻松重现。对 http://localhost:5000/data 的调用返回 customErrorHandler > dataRoutes.get > Error,我认为这是您需要的。

import { Request, Response, NextFunction } from 'express';
import bodyParser = require('body-parser');
import express = require('express');

type ServerError = {
status: number;
message: string;
}

const dataRoutes = express.Router().get('/', (_, res, next) => {
setTimeout(() => { // mimic an asynchronous operation
const error = true;
if (error) {
next({ status: 500, message: 'dataRoutes.get > Error' });
return;
}

res.send('dataRoutes.get > Success');
}, 1000);
});

const routes = express.Router().use('/data', dataRoutes);

const app = express();
app.use(bodyParser.json());
app.use('/', routes);
app.use((err: ServerError, req: Request, res: Response, next: NextFunction) => {
res
.status(err.status)
.send(`customErrorHandler > ${err.message}`);
});

app.listen(5000);
console.log('Now listening on port 5000');

这是我的 tsconfig.json 文件:

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"allowSyntheticDefaultImports": true
}
}

这些是我的 package.json 依赖项:

"devDependencies": {
"@types/express": "^4.16.1",
"typescript": "^3.4.1"
},
"dependencies": {
"express": "^4.16.4"
}

关于javascript - express.js 中的自定义错误处理程序未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55551714/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com