有关详情页显示的问题
我现在已经可以把数据录入,并且在后台列表页中展示出来,但是却无法在详情页中看到我录入人的数据,一直提示错误:在app.js的详情页代码中
app.get('/movie/:id',function(req,res) {
var id = req.params.id;
Movie.findById(id,function (err,movie) {
res.render('detail',{
title:'hans ' + movie.title,
id: id,
movie: movie
});
})
})
的movie.title显示 Cannot read property 'title' of undefined。不明白为什么是这里报错