我想在我的 Express/Node 服务器上模拟 404 错误。我怎样才能做到这一点?
从 Express 4.0 开始,有一个专用sendStatus功能:
sendStatus
res.sendStatus(404);
如果您使用的是早期版本的 Express,请改用该status函数。
status
res.status(404).send('Not found');