s3 分片上传
大家有使用过aws s3的分片上传吗,求回答
2 回复
用过 Aliyun OSS 分片,没用过 S3
var params = {Bucket: 'bucket', Key: 'key', Body: stream};
var options = {partSize: 10 * 1024 * 1024, queueSize: 1};
s3.upload(params, options, function(err, data) {
console.log(err, data);
});
https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#upload-property