收藏
回答

chooseImage中的tempFilePaths在chooseMedia中的那个可以替换?

//选择照片

  choosePhoto(){

    wx.chooseMedia({

      count: 1,

      mediaType: ['mix'],

      sourceType: ['album'],

      success: (res) => {

        console.log(res)

        if (res.errMsg === 'chooseMedia:ok' && res.tempFilePaths.length !== 0){

          this.setData({

            src: res.tempFilePaths[0]

          }, () => {

            // 获取犬类种类

            this.getSpecies();

          });

        }

      }

    });

  },

在 if (res.errMsg === 'chooseMedia:ok' && res.tempFilePaths.length !== 0){

          this.setData({

            src: res.tempFilePaths[0]

这串代码报错,原因是:类型“ChooseMediaSuccessCallbackResult”上不存在属性“tempFilePaths”

回答关注问题邀请回答
收藏

3 个回答

登录 后发表内容