uni.$on('uAvatarCropper', function(path) {
uni.showLoading({
title: '头像上传中...'
})
let ext;
if (this.$g.checker.isBase64(path))
ext = 'jpg'
else
ext = path.split('.').pop()
this.$g.image.uploadImage(path, 'tx_' + Date.now() + '.' + ext).then((res) => {
uni.hideLoading();
this.avatarUrl = res.fileID;
uni.showToast({
title:'上传成功'
})
})
.catch((err) => {
uni.hideLoading();
uni.showToast({
title:'发生错误,上传头像失败'
})
})
});
showloading 不显示,showtoast显示正常,这是什么原因,我试过不是执行过快,加延时也不显示
0 个回复