wx.downloadFile({
url: 'http://example.com/somefile.pdf',
success: function (res) { var filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) { console.log('打开文档成功')
}
})
}
})
wx.downloadFile是成功了的filePath 也有值,但是到wx.openDocument就报错、到fail里面去了:
wx.openDocument:fail file type not supported 2003
我也是IOS可以,安卓就报这个错
之前就有一个和我一样问题的帖子,但是官方怎么不回答啊????
(System:Android 7.0,WeChat 6.6.7.1321)
把fileType参数加上就OK了,感觉是必填项
您好,请问你的问题解决了吗,有什么好的建议吗?我也遇到这个问题了
求官方大神给出指导