0
示例代碼:如何從服務器端的api獲取數據,並使用expressjs將檢索到的數據傳遞給pugjs文件?
// index.pug
p #{polls}
// apiendpoint
http://localhost:8080/api/polls
//路徑文件(index.js):
在這裏,我該怎麼辦向api發出請求,並從api(本地)傳遞檢索結果來輪詢變量,同時呈現profile.pug
app.route('/profile')
.get(isLoggedIn, function (req, res) {
res.render('profile', {'polls': passvaluehere});
});
});