标签: javascript node.js
我有一个功能,可以从数据库中获取一些数据,但我不知道如何以流模式将其发送到前端。
示例:
async (req, res) => { const data = await getData(req.query.id); // below I want to pipe data from result of function **getData()** to **res** data.pipe(res); },