在.ejs中展示异步函数返回的数据,可以通过以下步骤实现:
app.get('/data', async (req, res) => {
try {
const data = await fetchData(); // 异步获取数据的函数
res.render('template.ejs', { data }); // 将数据传递给模板引擎
} catch (error) {
console.error(error);
res.status(500).send('Error occurred');
}
});
<!DOCTYPE html>
<html>
<head>
<title>展示异步数据</title>
</head>
<body>
<h1>异步数据展示</h1>
<p><%= data %></p>
</body>
</html>
fetch('/data')
.then(response => response.text())
.then(html => {
document.getElementById('container').innerHTML = html;
})
.catch(error => console.error(error));
这样,当访问页面时,后端会异步获取数据并将数据传递给.ejs模板,然后前端通过发送HTTP请求获取渲染后的页面,并将页面内容插入到容器元素中,从而展示异步函数返回的数据。
注意:以上示例中的代码仅为演示目的,实际应用中需要根据具体情况进行适当的修改和优化。
推荐的腾讯云相关产品:腾讯云云服务器(ECS)、腾讯云云数据库MySQL(CDB)、腾讯云云函数(SCF)等。你可以通过访问腾讯云官网(https://cloud.tencent.com/)了解更多相关产品和详细信息。
领取专属 10元无门槛券
手把手带您无忧上云