当前位置:   article > 正文

小程序openDocument在真机无法打开的问题_opendocument:fail not found 3th activity

opendocument:fail not found 3th activity

openDocument方法有一个参数叫fileType,文档上说的非必填,但是不填部分格式的文件又打不开,如docx,测试过程中,pdf和doc都没问题,就docx打开失败,但是如果填写,就只能打开那一种格式的文件。

处理方法:将文件地址链接后缀名截取下来动态塞进去。

  1. openFile(e) {
  2. console.log(e);
  3. uni.showLoading({
  4. title: '加载中'
  5. })
  6. uni.downloadFile({
  7. url: e.url,
  8. success: function(res) {
  9. uni.hideLoading();
  10. const filePath = res.tempFilePath;
  11. const index = e.url.lastIndexOf(".");
  12. const suffix = e.url.substring(index+1);
  13. uni.openDocument({
  14. fileType: suffix,
  15. filePath: filePath,
  16. success: function(res) {
  17. console.log('打开文档成功')
  18. }
  19. })
  20. }
  21. })
  22. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/644278
推荐阅读
相关标签
  

闽ICP备14008679号