gpt4 book ai didi

node.js - 将两个响应数据合并为一 - NodeJS

转载 作者:太空宇宙 更新时间:2023-11-03 21:49:07 26 4
gpt4 key购买 nike

我有一个 NodeJS 服务器,它从两个不同的 API 获取数据,然后我想将这两个 API 的结果合并到一个 JSON 响应中。我向您发送代码:

EventModal.eventSearch(eventReq, type, async function (eventRes) {
EventModal.getBoostEvents(eventReq, type, async function (eventBoostRes) {
res.json({
status: true,
data: eventRes,
eventBoostRes: eventBoostRes,
});
});
});

我希望 eventReseventBoostRes 位于 data 的一个响应中。那么如何才能实现这一目标?

eventReseventBoostRes为查询结果。

提前致谢。

最佳答案

你可以像这样组合它们:

EventModal.eventSearch(eventReq, type, async function (eventRes) {
EventModal.getBoostEvents(eventReq, type, async function (eventBoostRes) {
res.json({
status: true,
data: {
eventRes,
eventBoostRes
}
});
});
});

关于node.js - 将两个响应数据合并为一 - NodeJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47868222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com