创建和更新_ nodejs猫鼬

时间:2019-04-21 08:14:30

标签: node.js mongoose

我尝试通过错误创建或更新带有猫鼬的文档时,我的功能现在可以正常工作

  

未捕获的错误TypeError:无法设置未定义的属性“未定义”       在createCategory(/home/bell/workspace/panel-screen/controllers/CategoryController.js:21:21)       在processTicksAndRejections(internal / process / task_queues.js:86:5)

const createCategory = async (req, res) => {
    res.setHeader('Content-Type', 'application/json');
    let err, category;
    console.log(req.body)
    [err, category] = await to(Category.create({
        name: req.body.name,
        lang: req.body.lang,
    }))
    if (err) return ReE422(res, err);

    return ReS(res, category)

}

module.exports.createCategory = createCategory;

我什至重新安装了身体解析器。这是我的身体:

{ name: 'foo', lang: 'en' }

0 个答案:

没有答案