微信小程序调用相机崩溃
发布于 7 年前 作者 xiaochao 16405 次浏览 来自 问答

小程序中有需要输入6个相片的操作,但是现在是调用api代码直接就跳出来了(照片输入在二级页面,点击相机后直接跳到一级页面,感觉是崩溃了,调用了app.js中的onHide方法)。调用代码:

var that = this

    wx.chooseImage({

      count: 1, // 默认9

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

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

      success: function (res) {

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

        var tempFilePaths = res.tempFilePaths

        console.log("-------", "path  " + tempFilePaths)

        that.setData({ imageJhz: tempFilePaths }) 

      },

      fail: function () {

        console.log("-------", “fail”)

      }

    })

1 回复

老马 

也碰到这个问题了,

wx.chooseImage

崩溃。。IOS 系统,微信版本6.6.6。   iOS版本9.3.4

回到顶部