收藏
回答

iphone6 系统版本10 ,无法上传图片

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug chooseImage,getImageInfo,canvasToTempFilePath 客户端 7.0.3 3.0.5

- 点击上传图片,拍照上传,确认图片后,加载中然后就没有了,没有上传图片


- 应该是打印出返回的data


-

"pages/upPoto/main"


- 提供一个最简复现 Demo

data () {
return {
   imgMaxWidth: 1500,
   imgMaxHeight: 1500

  }

},


methods: {

    getSaoyiSao (id) {

        var taskid = Number(id)

        var that = this

        var FSM = wx.getFileSystemManager()

        wx.chooseImage({

          count: 1, // 默认9

          sizeType: ['compressed'], // 指定只能为压缩图,首先进行一次默认压缩

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

          success: function (photo) {

            wx.getImageInfo({

              src: photo.tempFilePaths[0],

              success: function (res) {

                var imgHeight = 0

                var imgWidth = 0

                var containerRatio = that.imgMaxWidth / that.imgMaxHeight

                var imgRatio = res.width / res.height

                if (imgRatio > containerRatio) {

                  imgWidth = that.imgMaxWidth

                  imgHeight = that.imgMaxWidth / imgRatio

                } else if (imgRatio < containerRatio) {

                  imgHeight = that.imgMaxHeight

                  imgWidth = that.imgMaxHeight * imgRatio

                }

                that.cWidth = Math.min(imgWidth, res.width)

                that.cHeight = Math.min(imgHeight, res.height)

                var ctx = wx.createCanvasContext('canvas')

                ctx.drawImage(res.path, 0, 0, that.cWidth, that.cHeight)

                ctx.draw(false, setTimeout(function () {

                  wx.canvasToTempFilePath({

                    fileType: 'jpg',

                    canvasId: 'canvas',

                    destWidth: that.cWidth,

                    destHeight: that.cHeight,

                    success: function (res) {

                      FSM.readFile({

                        filePath: res.tempFilePath,

                        encoding: 'base64',

                        success: function (data) {

                         console.log(data)

                        }

                      })

                    },

                    fail: function (res) {

                      console.log(res.errMsg)

                    }

                  })

                }, 300))

              }

            })

          }

        })

      }

}

   

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

6 个回答

  • LDMING
    LDMING
    2023-09-06

    我也遇到这个问题,有没有结果喃

    2023-09-06
    有用
    回复
  • Lu.Xn
    Lu.Xn
    2020-01-07

    请问解决了吗,我这边也碰到这个问题,好几个用户反馈,选了图片,显示压缩中,请稍后,然后就没有然后了,其中一个手机型号是华为P9

    2020-01-07
    有用
    回复
  • 是小白啊
    是小白啊
    2019-07-16

    H5还是小程序?报错信息是什么?

    2019-07-16
    有用
    回复
  • \
    \
    2019-07-16

    真机测试看看报没报错

    2019-07-16
    有用
    回复
  • 飞逝¿青春
    飞逝¿青春
    2019-07-16
    tbt
    2019-07-16
    有用
    回复
  • 😼橘子皮😼
    😼橘子皮😼
    2019-07-16

    请大神们帮我看看,这个为什么iphone没有执行成功,可以拍照,确定照片,但是显示加载中,然后就什么都没有了

    2019-07-16
    有用
    回复
登录 后发表内容