wang哈哈
wang哈哈
  • 发布:2021-10-21 19:35
  • 更新:2021-11-04 10:21
  • 阅读:809

使用uni.chooseImage选择图片后,uni.uploadFile 小程序上传文件无反应

分类:uni-app

uni.chooseImage({
count: 1,
success: (chooseImageRes) => {
uni.showLoading({
title: '正在上传...'
})

                    const tempFilePaths = chooseImageRes.tempFilePaths;  
                    console.log(tempFilePaths)  
                    uni.uploadFile({  
                        url: this.baseUrl + "/api/deform/upload/img", //仅为示例,非真实的接口地址  
                        filePath: tempFilePaths[0],  
                        name: 'file',  
                        type: "image",  
                        /* sizeType:"compressed", */  
                        header: {  
                            token: uni.getStorageSync('uerInfo').token  
                        },  
                        success: (uploadFileRes) => {  
                            var res = JSON.parse(uploadFileRes.data)  
                            if (res.success) {  
                                console.log(res.res);  
                                //识别身份证图片信息  
                                //2寸证件照  
                                this.params.idPhotoImg = this.baseUrl + res.res  
                                this.params.idPhoto = res.res  
                                uni.hideLoading();  
                            } else {  
                                uni.showToast({  
                                    title: res.err.msg,  
                                    icon: "none"  
                                });  
                            }  
                        }  
                    });  
                }  
            })
2021-10-21 19:35 负责人:无 分享
已邀请:
duanxirui

duanxirui

解决了吗?

该问题目前已经被锁定, 无法添加新回复