小程序是否支持打开本地的PDF excel word等文件
- 需求的场景描述(希望解决的问题)
需要获取手机本地文件(PDF excel word等)的信息,
- 希望提供的能力
3 回复
现在可以使用wx.downloadFile打开文件了
wx.downloadFile({
url: `${that.data.filePath}`,
success: function (res) {
const filePath = res.tempFilePath
console.log(filePath)
wx.openDocument({
filePath: filePath,
success: function (res) {
//console.log(‘打开文档成功’)
}
})
}
})