使用 res.json() 时,我在 mongoose 中收到内部错误 500 而不是 404

问题描述

import express from 'express'
import asyncHandler from 'express-async-handler'
import Product from '../models/productModel.js'
const router = express.Router() 

router.get('/',asyncHandler(async (req,res) => {
    const products = await Product.find({})

    res.json(products)
}))

router.get('/:id',res) => {
    const product = await Product.findById(req.params.id).exec()
    
if(product)
{
    res.json(product)
}
else{
    res.status(404).json({message: 'Not found'})
}
}))

export default router

其余代码正在运行。但是当我故意放错 id 时,错误 404 不显示错误部分是这样的。

enter image description here

解决方法

发生错误是因为您将 id-value 传递给无法转换为 ObjectId 的 mongoose,因此出现错误“Cast to ObjectId failed for value”。您可以使用以下检查来防止传递无效的对象 ID,并相应地处理这种情况,例如:

import mongoose from "mongoose";

router.get('/:id',asyncHandler(async (req,res) => {
  if( !mongoose.isValidObjectId(req.params.id) ) {
    return res.status(404).json({message: 'Not found'});
  }
  // rest of the code
});
,

使用 exec() 方法。请参阅here

const product = await Product.findById(req.params.id).exec()