gpt4 book ai didi

javascript - 如何通过管道流以在 hapi.js 中回复

转载 作者:IT老高 更新时间:2023-10-28 23:25:29 26 4
gpt4 key购买 nike

我正在寻找hapi中的并行方法

// Express + Request exmaple
function(req, res){
request('http://example.com/image.png').pipe(res);
}

如何在 hapi 中传递响应?

server.route({
method: "*",
path: "/api/results/{date}",
handler: (request, reply) => {


//????reply(?);



}
});

最佳答案

来自另一个问题/答案:

function (request, reply) {

Request('http://example.com/image.png')
.on('response', function (response) {
reply(response);
});
}

https://stackoverflow.com/a/31222563/2573244

关于javascript - 如何通过管道流以在 hapi.js 中回复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31130831/

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