This commit is contained in:
陆柯 2021-10-19 17:29:42 +08:00
parent fea3922e00
commit 0e05f43f7f

View File

@ -220,7 +220,9 @@ module.exports = {
uni.hideLoading() uni.hideLoading()
try{ // 不知为何uni.uploadFile返回的 data 是字符串而不是对象 try{ // 不知为何uni.uploadFile返回的 data 是字符串而不是对象
if (typeof(data)==='string') {
data = JSON.parse(data) data = JSON.parse(data)
}
}catch(exp){ }catch(exp){
return { _state: 'CLIENT_FAIL_RESPONSE_JSON_MALFORMED'} return { _state: 'CLIENT_FAIL_RESPONSE_JSON_MALFORMED'}
} }
@ -304,11 +306,9 @@ module.exports = {
}) { }) {
if (backend==='UNICLOUD'){ if (backend==='UNICLOUD'){
const resultCloud = await this.pickupFile2Cloud({mediaType, count, sizeType, sourceType, maxDuration }) const resultCloud = await this.pickupFile2Cloud({mediaType, count, sizeType, sourceType, maxDuration })
this.colog(resultCloud)
return resultCloud return resultCloud
}else if (backend==='SERVER' && url){ }else // if (backend==='SERVER'){
const resultServer = await this.pickupFile2Server({mediaType, count, sizeType, sourceType, maxDuration, url, header, formData, name}) const resultServer = await this.pickupFile2Server({mediaType, count, sizeType, sourceType, maxDuration, url, header, formData, name})
this.colog(resultServer)
return resultServer return resultServer
} }
}, },