无法读取未定义的MONGODB / NODE.JS的属性'_id'

时间:2019-03-06 22:52:54

标签: node.js angular mongodb

我需要帮助。 我使用Google登录登录,但出现此错误

无法读取未定义的属性'_id'

我无法解决。

在终端说我的错误在第97行 enter image description here

这是我的代码:

enter image description here

enter image description here

enter image description here

enter image description here

谢谢

1 个答案:

答案 0 :(得分:0)

我认为您在保存过程中遇到了错误(代码的第89行)。

您可以在回调中看到两个对象-errusuarioDB。添加错误检查:

usuario.save((err, usuarioDB) => {
    if (err) {
        console.log(err);
        return res.status(500).json(message: err.message);
    }
    ...
})

这应该可以为您提供线索。