只能从微信聊天记录里面选择文件如下:
wx.chooseMessageFile({count: 1, // 最多可以选择的文件个数type: 'file', // fileextension: ['pdf'], // 类型 success(res) {const filePath = res.tempFiles[0].path;const fileName = res.tempFiles[0].name;setTimeout(() => {that.setData({filePath,fileName});}, 500);}});