我有一个用express.js和SPA构建的REST API,它们彼此通信。我有错误处理中间件,如here所述。我在前端获得了正确的错误代码,但消息始终为Request failed with error code ...
,如何通过res.status(4xx).json({message: 'My custom message to show on the SPA'})
或res.status(4xx).send('My custom message to show on the SPA')
发送自定义消息?由于我没有从服务器呈现任何内容,因此无法直接在DOM中添加消息。我必须发送json或文本回复。