当请求页面时,我让服务器从数据库中获取数据。我已经使用快递路线弄清楚了那部分。现在,我显然想在生成页面时使用该数据。我该怎么做?
app.get('/', function(req, res) {
console.log("GET REQUEST RECEIVED")
getData().then(function(result) {
data = result;
}, function(err) {
console.log(err);
});
//useDataInAppJs(data); ??????????????????????????
res.sendfile(__dirname + '/public/index.html')
})
我已经进行了大量谷歌搜索,但是似乎无法弄清楚如何实现该注释行。