查找查询显示所有课程列表和相关信息,但是使用findById(id)时,无法找到课程

时间:2019-05-16 01:33:58

标签: node.js mongoose

查找查询会显示所有课程列表和相关信息,但是在使用findById(id)时,它找不到课程。

async function getCourse() {
    const course = await Course.find({});
    console.log(course);
}
getCourse()

async function updateCourse(id) {
    const course = await Course.findById(id);
    if (!course) return console.log("course not found");

    course.name = 'sagar';
    course.author = 'sagar';
    const result = await course.save();
    console.log(result);
}
updateCourse('5a68fde3f09ad7646ddec17e');

0 个答案:

没有答案