小程序中有需要输入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”)
}
})