0

我正在使用请求 npm 模块。我有一个网关充当中间人,从外部接收请求并将其转发给相关的微服务。对于下载,我有以下代码。

if (
    req.baseUrl.match('download') ||
    req.url.match('download')
) {
    request.get(url).pipe(res);
    return;
}

现在我必须将图像上传到微服务,我该怎么做,我一无所知。

4

1 回答 1

0

这对我有用。

req.pipe(request('http://host/url/')).pipe(res)
于 2017-12-28T12:14:08.707 回答