模拟器测试没问题,真机调试的时候只能选图片。
代码如下:
chooseImage: function () {
var that = this;
wx.chooseMessageFile({
count: 10,
type:'all',
success: function (res) {
//console.log(res.tempFiles[0].name);
//上传文件
var imgArrNow = that.data.imgArr;
imgArrNow = imgArrNow.concat(res.tempFiles);
console.log(imgArrNow);
that.setData({
imgArr: imgArrNow
})
}
})
},
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)