import SFAliyunOss from 'react-native-sf-aliyun-oss';
//配置一次
const config = {
AccessKey: '阿里云的AccessKey',
SecretKey: '阿里云的SecretKey',
SecretToken: '阿里云的SecretToken',
endPoint: '阿里云的endPoint',
bucketName: '阿里云的bucketName'
}
SFAliyunOss.config(config)
//文件上传
SFAliyunOss.upload('阿里云文件目录','上传文件的地址','文件后缀名',(progress)=>{},(fileKey)=>{},(err)=>{})
//多文件上传
SFAliyunOss.upload('阿里云文件目录',[{filePath:'',ext:'png'},{filePath:'',ext:'png'}],(progress)=>{},(fileKeys)=>{},(err)=>{})
//文件下载
SFAliyunOss.downLoad('阿里云文件地址',(progress)=>{},(filePath)=>{},(err)=>{})