我有一个包含对象数组的函数,并希望将它们与.esj / .htlm页面一起使用(尽管我假设数据变量)。这就是我所拥有的,不知道该怎么做,谢谢!
autocomplete="false"
答案 0 :(得分:0)
看起来你还没有学习基础知识。 您可以通过以下方式执行此操作:
app.get('/', (req, res) => {
// call your function here
//normal sync function
data=function_name()
res.render('index', data);
//if you are using promisified function
function_name()
.then(data => {
res.render('index', data);
}).catch(error => {
console.log(error)
res.send(error)
})
})