fix: update upload method

This commit is contained in:
yanglbme 2020-08-29 19:13:52 +08:00
parent 7e333ed54c
commit ec2ae4aa51

View File

@ -4,26 +4,23 @@ const cdnResourceUrl = 'cdn.jsdelivr.net/gh/filess/images/';
export function uploadImgFile(file) {
return new Promise((resolve, reject)=> {
return new Promise((resolve, reject) => {
const checkImageResult = isImageIllegal(file);
if (checkImageResult) {
reject(checkImageResult);
} else {
const imgFile = new FileReader();
imgFile.readAsDataURL(file);
imgFile.onload = function() {
const base64Content = this.result.split(',').pop();
fileApi.fileUpload(base64Content, file.name).then(res=> {
const imageUrl = res.content.download_url.replace(githubResourceUrl, cdnResourceUrl)
resolve(imageUrl);
}).catch(err => {
console.log(err.message)
})
}
return;
}
const imgFile = new FileReader();
imgFile.readAsDataURL(file);
imgFile.onload = function () {
const base64Content = this.result.split(',').pop();
fileApi.fileUpload(base64Content, file.name).then(res => {
const imageUrl = res.content.download_url.replace(githubResourceUrl, cdnResourceUrl);
resolve(imageUrl);
}).catch(err => {
console.log(err.message)
})
}
});
}