节点请求中的 curl --upload-file 等价于什么
What is the equivalent of curl --upload-file in node-request
我正在使用 node-request and trying to send a file to IBM's HDFS, as per this documentation。
传递此 JSON 对象以请求成功上传:
var options = {
method: 'put',
body: 'foo',
headers: {
'Content-Type': 'application/octet-stream',
'Transfer-Encoding': 'chunked'
}
};
并且 运行 此 CURL 命令也成功上传了一个文件:
curl -v -X PUT -L -b cookie.jar "https://host:port/webhdfs/v1/tmp/myLargeFile.zip?op=CREATE&data=true" --header "Content-Type:application/octet-stream" --header "Transfer-Encoding:chunked" -T "file.txt"
但是,尝试像这样指定文件流:
var options = {
method: 'put',
headers: {
'Content-Type': 'application/octet-stream',
'Transfer-Encoding': 'chunked'
},
multipart : [
{ body: fs.createReadStream(localFile) }
]
};
失败,我不知道哪里出错了。如何使用节点请求从 CURL 复制“--upload-file”参数?
我提出了一个有效的 example on Github。
要点是您需要将文件通过管道传输到请求中:
fs.createReadStream(filePath).pipe(request.put(putURL,options,function(err, httpsResponse, body){
if ( err ) {
console.log('err', err);
} else {
console.log(body);
}
}));
仍然不确定如何将文件流作为选项参数中的一个选项传递,但这对我有用!
-- 更新--
哇,我觉得自己像个十足的白痴。选项为 file
。是的,就这么简单。
我正在使用 node-request and trying to send a file to IBM's HDFS, as per this documentation。
传递此 JSON 对象以请求成功上传:
var options = {
method: 'put',
body: 'foo',
headers: {
'Content-Type': 'application/octet-stream',
'Transfer-Encoding': 'chunked'
}
};
并且 运行 此 CURL 命令也成功上传了一个文件:
curl -v -X PUT -L -b cookie.jar "https://host:port/webhdfs/v1/tmp/myLargeFile.zip?op=CREATE&data=true" --header "Content-Type:application/octet-stream" --header "Transfer-Encoding:chunked" -T "file.txt"
但是,尝试像这样指定文件流:
var options = {
method: 'put',
headers: {
'Content-Type': 'application/octet-stream',
'Transfer-Encoding': 'chunked'
},
multipart : [
{ body: fs.createReadStream(localFile) }
]
};
失败,我不知道哪里出错了。如何使用节点请求从 CURL 复制“--upload-file”参数?
我提出了一个有效的 example on Github。
要点是您需要将文件通过管道传输到请求中:
fs.createReadStream(filePath).pipe(request.put(putURL,options,function(err, httpsResponse, body){
if ( err ) {
console.log('err', err);
} else {
console.log(body);
}
}));
仍然不确定如何将文件流作为选项参数中的一个选项传递,但这对我有用!
-- 更新--
哇,我觉得自己像个十足的白痴。选项为 file
。是的,就这么简单。