作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个使用 Node webkit 的桌面应用程序,我需要能够将大文件从 Node 服务器上传到另一台服务器。它需要能够将文件分块到服务器,因为请求大小限制会阻止流式传输整个文件。我目前正在使用请求模块发布不分块的上传,这适用于小文件,但我似乎找不到任何关于如何从 Node 进行分块上传的示例。以下是我目前所拥有的:
var form = request.post('http://server.com/Document/Upload',
{contentType: 'multipart/form-data; boundary="' + boundaryKey + '"', preambleCRLF: true, postambleCRLF: true},
function(err, res, body) {
console.log(res);
}).form();
form.append('uploadId', myUploadId);
form.append('file', fs.createReadStream(zipFileFullPath), {filename: 'test.zip'});
知道如何在 Node 中完成此操作吗?我见过很多在 Node 服务器上接收分块上传的例子,但似乎找不到任何关于如何从 Node 发送它们的信息。
最佳答案
查看 request 的文档它显示了如何提供分块选项:
request({
method: 'PUT',
preambleCRLF: true,
postambleCRLF: true,
uri: 'http://service.com/upload',
multipart: [
{
'content-type': 'application/json'
body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
},
{ body: 'I am an attachment' },
{ body: fs.createReadStream('image.png') }
],
// alternatively pass an object containing additional options
multipart: {
chunked: false,
data: [
{
'content-type': 'application/json',
body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
},
{ body: 'I am an attachment' }
]
}
},
function (error, response, body) {
if (error) {
return console.error('upload failed:', error);
}
console.log('Upload successful! Server responded with:', body);
})
关于javascript - 将大文件从nodejs上传到另一台服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26404989/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!