私信  •  关注

Milan Velebit

Milan Velebit 最近创建的主题
Milan Velebit 最近回复了
5 年前
回复了 Milan Velebit 创建的主题 » nodejs中的双MongoDB请求

.get

app.get('/buildings', async (req, res) => {
    let res_obj = {}
    // Then execute your queries, and place the results inside this res_obj 
    ... queries and their handling ...
    res.send(res_obj);

{
    first_query_res: {
        ... 
    },
    second_query_res: {
        ... 
    }
}