安卓环境下wx.openDocument抛错!
打开word文档安卓环境下:openDocumnet:fail file type not supported 2003,IOS正常能打开
3 回复
怎么就没人回答啊?我也遇到了这个问题
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可以,安卓就报这个错