时间:2019-05-03 来源:小程序工厂
请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
// 上传照片
picture: function() {
var that = this
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
var tempFilePaths = res.tempFilePaths// 获取到图片
uploadFile_image(that, tempFilePaths)// 接口上传图片
}
})
},
这个方法应该可以用的,你再查一下呢,也没看到你的代码。