作者我遇到了问题2,我是这样解决的,希望能帮助到有需要的人,上传用的multipartUpload方式。
如果是需要从本地获取checkpoint来实现断点续传的话,需要手动把文件放到 checkpoint 中。
// 从本地获取checkpoint
const currentCheckpoint = this.getLocalCheckpoint(opt.md5Code)
if (currentCheckpoint) {
currentCheckpoint.file = opt.file
multipartUploadOptions.checkpoint = currentCheckpoint
}