收藏
回答

wx.chooseImage ios不能调用 安卓图片不显示

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.chooseImage 客户端 7.0.4 2.6.6

- 当前 Bug 的表现(可附上截图)


- 预期表现


- 复现路径


- 提供一个最简复现 Demo


上传图片iOS的不能打开本地相册,安卓图片不显示

frontimage: function () {

     console.log("9292838")

     var that = this;

     var Type = that.data.sourceType

     wx.chooseImage({

       count: 1, // 默认9

       sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有

       sourceType: Type, // 可以指定来源是相册还是相机,默认二者都有

       success: function (res) {

         // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片

         console.log(res,134)

         that.setData({

           FilePaths: res.tempFilePaths,

         })

         wx.uploadFile({

           url: '后台接口',

           filePath: res.tempFilePaths[0],

           header: {

             sessionKey: that.data.sessionKey

           },

           name: 'photo',

           formData: {

             realName: that.data.idcardname,

             identification: that.data.idcard,

           },

           success(res) {

             console.log(res)

             const data = res.data

             // do something

           }

         })

       }

     })

   },


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容