gpt4 book ai didi

javascript - 使用 EJS 模板的 Express 应用程序给出错误 : Failed to lookup view "/id" in views directory "/home/USER/Desktop/scholarship-app/views"

转载 作者:行者123 更新时间:2023-12-03 05:18:48 25 4
gpt4 key购买 nike

我试图在我的 Express 应用程序中呈现 id 的请求 url 并收到以下错误

错误:无法在 View 目录“/home/USER/Desktop/scholarship-app/views”中查找 View “/id”

这是我的 Express 应用程序代码的一部分

app.get('/phd/:id', function(req, res) {

var pdhID = parseInt(req.params.id, 10);
var query = req.query;

console.log('console: ' + pdhID + 'query: ' + query);

db.scholarship.findAll({

where: pdhID
}).then(function(scholarship) {

if (scholarship != null) {

if (query.hasOwnProperty('format') && query.format === 'json') {

return res.json(scholarship);
} else {

var data_scholarship = JSON.stringify(scholarship);
console.log("rendering the scholarship page" + data_scholarship );
//error
return res.render('/id', {

title: data_scholarship.title,
css_path: '/public/css/styles.css',
keywords: 'phd position, shoclarships for sciences',
menu_bar_arr: menu_bar_arr,
menu_bar_link: menu_bar_link,
current_page: 'about-us',
menu_bar_lindx: menu_bar_arr.length - 1,
data_scholarship: data_scholarship,
error: 0
});
}
} else {

return res.render('id', {
error: '404'
});
}
}, function(err) {

return res.render('id', {
msg: 'could cnt open the file',
error: 1
});
});
});

我的 id.ejs 文件位于@路径/home/USER/Desktop/scholarship-app/views,但它仍然给我错误。

如果有人能帮助解决这个错误,那就太好了。我在同一目录中的其他 View 正在正确渲染

最佳答案

删除多余的/来自您的idreturn res.render('/id',{....})

关于javascript - 使用 EJS 模板的 Express 应用程序给出错误 : Failed to lookup view "/id" in views directory "/home/USER/Desktop/scholarship-app/views",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41480747/

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