添加ResponseContentEncoding参数为'url',防止S3对特殊字符进行编码处理
@@ -936,6 +936,7 @@ export default () => {
const params = {
Bucket: 'ccrb',
Key: name,
+ ResponseContentEncoding: 'url' // 禁止对特殊字符的编码处理
}
s3.getObject(params, (err: any, data: any) => {