gpt4 book ai didi

javascript - 无法获取/mentor/mypage/pre-ordered_Lectures/1

转载 作者:行者123 更新时间:2023-12-03 22:34:11 25 4
gpt4 key购买 nike

我不太擅长英语和编码初学者。我使用 javascript,我的操作系统是 Mac。
无论如何,我在 MysqlWorkbench 中编写了行查询,现在,我想在 VScode 中编写它以进行 Sequelize 。

select reservation_datetime
from LectureReservation
Inner Join Lecture
On LectureReservation.lecture_id = Lecture.id
Where Lecture.mentor_id = 1
这是我的查询和
module.exports = {
get: (req, res) => {
if (req.params.id) {
LectureReservation
.findOne({
include: [
{
model: Lecture,
where: {
Lecture_id: Lecture.id,
},
},
],
attributes: ['reservation_datetime'],
where: {
mentor_id: req.params.id,
},
})
.then((result) => {
if (result) {
res.status(200).json({ message: 'OK!' });
} else {
res.status(409).json({ message: 'Wrong Access' });
}
})
.catch((err) => {
res.status(500).send(err);
});
}
},
};
这是我的 Sequelize 代码。和
enter image description here
这是我在 postman 中的错误代码..
结果:如何编辑我的 Sequelize 代码来修复我的 postman 错误..?

最佳答案

看来这不是 Sequelize 相关的错误。错误代码是 404。这意味着路由不可用。请检查您的路线。
如果您的 Sequelize 模型正确关联,您也不需要指定包含条件。你可以写

include: [
{
model: Lecture
},
],

关于javascript - 无法获取/mentor/mypage/pre-ordered_Lectures/1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63169795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com