{ console.log(res); if (res.statusCode _opendocumen">
当前位置:   article > 正文

微信小程序错误readFile:fail parameter error: parameter.filePath should be String instead of Undefined;..._opendocument:fail parameter error: parameter.filep

opendocument:fail parameter error: parameter.filepath should be string inst

小程序项目总结:

需求:有一个文件需要转发给通讯录好友。


 wx.downloadFile({
     url: that.data.fileUrl,
     filePath: that.data.cachePath + "/名单Excel模板.xls",   //: "/名单Excel模板.xls"如果不加"/"就被添加在指定文件外面咯
     success: (res) => {
       console.log(res);
       if (res.statusCode === 200) {
         console.log(res.filePath)
         const  filePath=res.filePath
         wx.openDocument({
           filePath: filePath, 	
           showMenu: true,
           fileType: ".xlsx" | ".xls",
           success: function (res) {
             console.log(res);
           },
           fail: res => {
             console.log(res);
           }
         })
       }
     },
     fail: res => {
       console.log(res);
     }
   })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

这是第一版的代码,当时报错 “readFile:fail parameter error: parameter.filePath should be String instead of Undefined”

经过多方查证

const that = this   //这里更改了this
 wx.downloadFile({
      url: that.data.fileUrl,
      filePath: that.data.cachePath + "/名单Excel模板.xls",
      success: (res) => {
        console.log(res);
        that.setData({        //在data维护一组数据 
          filePath: res.filePath
        })
        if (res.statusCode === 200) {
          console.log(res.filePath)
          wx.openDocument({
            filePath: that.data.filePath,  //不直接使用返回回来的 filePath,而是从维护的data里读取
            showMenu: true,
            fileType: ".xlsx" | ".xls",
            success: function (res) {
              console.log(res);
            },
            fail: res => {
              console.log(res);
            }
          })

        }
      },
      fail: res => {
        console.log(res);
      }
    })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

搞定!

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

闽ICP备14008679号