我正在尝试从routes.js文件中呈现个人资料页面
app.get('/loadProfile', function (req, res) {
res.render('profile', {
user: req.user,
FBDates: FBDataset["Dates"],
FBImpressions: FBDataset["Impressions"]
});
});
运行服务器之后控件来到这个/ loadProfile,但没有呈现配置文件页面,在终端我得到以下
GET /loadprofile 200 291ms - 3.97kb
答案 0 :(得分:0)
图片中的网址是“localhost:8080 / profile”。要查看呈现的配置文件视图,请导航到“localhost:8080 / loadprofile”。