收藏
回答

Cannot read property 'match' of undefined?

uploadimages(filePath){
var that=this
var a = filePath.match(/\.[^.]+?$/)
wx.uploadFile({
  
  cloudPath`codeImg/${Math.random()}_${Date.now()}.${a[1]}`,
  filePath:filePath,
  name'name',
  success:res=>{
    console.log(" 图片路径",res.fileID)
    that.setData({
      cloudImg:res.fileID
    })
  }
上传图片时显示Cannot read property 'match' of undefined?,请高手帮忙解决下,谢谢
回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2022-06-28

    这个参数是undefined 为啥是,我可不知道,没代码

    2022-06-28
    有用 1
    回复 12
    • 笑看人生
      笑看人生
      2022-06-28
      getQrcode() {
        wx.showToast({
          title: '生成中....',
        })
        var that = this
        wx.cloud.callFunction({
          name:"createQRCode",//生成小程序二维码
          // name:"wxacode",//生成小程序码
          // name: "getUnlimited",//生成小程序二维码
          data: {
            openid: 'dddddddd',
            freshID: 'dafafaasfafasfa'
          },
          success: res => {
            console.log(res)
            let fileManager = wx.getFileSystemManager();
            let filePath = wx.env.USER_DATA_PATH + '/qr.jpg';
            console.log("写入成功",filePath)
            fileManager.writeFile({
              filePath: filePath,
              encoding: "binary",
              data: res.result.buffer,
              success: res => {
                console.log(filePath);
                var codeImg = filePath;
                wx.hideLoading({})
                that.setData({
                  filePath:filePath
                })
                that.uploadimages()
              }
            })
          }
        })
      },
      2022-06-28
      回复
    • Mr.Zhao
      Mr.Zhao
      2022-06-28回复笑看人生
      不传参数?
      2022-06-28
      1
      回复
    • 笑看人生
      笑看人生
      2022-06-28
      filePath是临时路径,已经生成成功了
      2022-06-28
      回复
    • Mr.Zhao
      Mr.Zhao
      2022-06-28回复笑看人生
      不传参数? 能看到吗
      2022-06-28
      1
      回复
    • 笑看人生
      笑看人生
      2022-06-28
      传了,现在是这样报错:uploadFile:fail parameter error: parameter.url should be String instead of Undefined;
      2022-06-28
      回复
    查看更多(7)
登录 后发表内容