英文:
Cannot access 'cpa' before initialization
问题
我收到了来自这个路由的以上错误:
router.put('/edit/:id', async (req, res) => {
const cpa = await CPASchema.findById(req.params.id).then(() => {
res.render('edit', { cpa: cpa });
console.log("EDIT QUESTION")
}).catch((err) => {
console.log(err.message);
})
})
问题可能出在哪里?谢谢。
英文:
I'm getting the error above from this route:
router.put('/edit/:id', async (req, res) => {
const cpa = await CPASchema.findById(req.params.id).then(() => {
res.render('edit', { cpa:cpa });
console.log("EDIT QUESTION")
}).catch((err) => {
console.log(err.message);
})
})
Any idea where the problem could be? Thank you.
答案1
得分: 1
这对我有用。
router.put('/edit/:id', async (req, res) => {
const cpa = await CPASchema.findById(req.params.id)
res.render('edit', { cpa: cpa });
console.log("编辑问题")
})
英文:
This worked for me.
router.put('/edit/:id', async (req, res)=> {
const cpa = await CPASchema.findById(req.params.id)
res.render('edit', {cpa:cpa});
console.log("EDIT QUESTION")
})
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论