它是一个简单的图像(图片)下载服务器,Express.js接收请求,从MongoDB GridFS获取图像,并以文件响应。
当请求有效时(当请求的文件存在时),它就可以了。
问题是当查询失败时我无法捕获MongoError
(即请求的图像不存在)。
import Grid from 'gridfs-stream'
const root = 'fs_images'
// This func returns the file stream
export function getReadStream (id) {
const gfs = Grid(mongoose.connection.db, mongoose.mongo)
const options = {
_id: id,
mode: 'r',
root: root
}
const readStream = gfs.createReadStream(options)
readStream.on('error', function (err) {
// throw here
// it performs the same without this on-error hook;
// if comment the `throw err`, nothing will happens
// but I want the caller knows the error
throw err
})
return readStream
}
这是路由器
router.get('/:fileId', function (req, res, next) {
const fileId = req.params.fileId
try {
const imgReadStream = image.getReadStream(fileId)
imgReadStream.pipe(res)
} catch (err) {
// nothing catched here
// instead, the process just crashed
console.log(err)
}
}
而我无法抓住错误。当我尝试请求某些不存在的内容时,控制台中的MongoError
节目就会显示errno
与1
相关的应用程序崩溃。
控制台输出主管:
/.../node_modules/mongodb/lib/utils.js:123
process.nextTick(function() { throw err; });
^
MongoError: file with id 123456123456123456123456 not opened for writing
at Function.MongoError.create (/.../node_modules/mongodb-core/lib/error.js:31:11)
这可能有点不同。如果其他地方抛出Error
它将被我的错误处理程序(app.use(function(err, req, res, next){ /* ... */})
)捕获,或者至少被Express.js
的默认处理程序捕获,并返回500
,没有进程崩溃。
简而言之,我希望应用知道并抓住此MongoError
,以便我可以手动处理(即返回404
响应)。
答案 0 :(得分:1)
try
/ catch
将无效,因为错误发生在不同的时钟(异步)。也许您可以在路由器中侦听错误吗?
const imgReadStream = image.getReadStream(fileId)
imgReadStream.on('error', function(err) {
// Handle error
});
imgReadStream.pipe(res)