您好,请问你的问题解决了吗,有什么好的建议吗?我也遇到这个问题了
小程序wx.openDocument报不支持的失败文件类型错[代码]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)
2018-09-19您好,请问你的问题解决了吗,有什么好的建议吗?我也遇到这个问题了
安卓环境下wx.openDocument抛错!打开word文档安卓环境下:openDocumnet:fail file type not supported 2003,IOS正常能打开[图片]
2018-09-19您好,请问你的问题解决了吗,有什么好的建议吗?我也遇到这个问题了
请教:安卓手机wx.downloadFile下载文件后缀名.htm打开错误function openFileByUrl(url){ console.log('url='+url); this.showLoading(); var hearder = getHeader(url); console.log(hearder); wx.downloadFile({ url: url, header: hearder , success: function (res) { console.log(res); var filePath = res.tempFilePath; console.log('filePath==='+filePath); wx.openDocument({ filePath: filePath, success: function (res) { console.log('打开文档成功') }, fail:function(err){ alert(err.errMsg); } }) }, complete:function(){ console.log('compleate'); wx.hideLoading(); } }) } 安卓手机下载附件(不管是doc,还是pdf)后缀名变成了.htm。然后打开就报:fail file type not supported 2003,ios下正常。 请问什么问题?感谢 [图片] [图片]
2018-09-19红米6pro和iphone7p都不行
web-view的bindmessage事件在开发者工具可以触发,真机不能触发h5页面 postmessag e({data:{test:'haha'}}),然后navigateBack(),但是为调用web-view的message事件,在开发者工具可以调用,但是在真机无反应
2018-08-17