收藏
回答

wx.showLoading?

wx.showLoading

为什么一闪就结束了 没有使用hideloading

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

2 个回答

  • 大川长风
    大川长风
    2022-06-24


    2022-06-24
    有用 1
    回复
  • 茜茜又困了🐽
    茜茜又困了🐽
    2022-06-24

    有没有使用wx.showToast之类的api

    2022-06-24
    有用
    回复 10
    • 这个名字怎么样
      这个名字怎么样
      2022-06-24
      2022-06-24
      回复
    • 茜茜又困了🐽
      茜茜又困了🐽
      2022-06-24回复这个名字怎么样
      else语句内代码截完整,控制台有报错信息吗?
      2022-06-24
      回复
    • 这个名字怎么样
      这个名字怎么样
      2022-06-24回复茜茜又困了🐽
      if(size > 5242880){
                wx.showToast({
                  title: '上传的图片大小不超过5mb',
                  icon: 'none',
                  duration: 2000,
                  mask: true
                })
                return false;
              }else{
                console.log(1111)
                  wx.showLoading({
                    title: '上传中',
                  })
                console.log(2222)
                wx.uploadFile({
                  url:'http://123.156.231.206:8000/API/uploadpaymentimg'
                  filePath: tempFilePaths,
                  name: 'file',
                  header:{
                    'content-type':'application/x-www-form-urlencoded',
                    'token':wx.getStorageSync('token'),
                  },
                  formData: { 
                    file: tempFilePaths,
                  },
                  success (res){
                    
                    res['data'] = JSON.parse(res.data);
                    console.log(res);
                    if(res.statusCode == 200){
                      wx.showToast({
                        title: res.data.msg,
                      })
                      that.setData({
                        uploadVoucher:{
                          show:true,//弹出框显示
                          fileList:res.data.data[0].url,
                          id:that.data.uploadVoucher.id
                        },
                      })
                      // 隐藏加载动画
                    }
                  },
                })
              }
      2022-06-24
      回复
    • 这个名字怎么样
      这个名字怎么样
      2022-06-24回复茜茜又困了🐽
      2022-06-24
      回复
    • 这个名字怎么样
      这个名字怎么样
      2022-06-24回复茜茜又困了🐽
      没有报错
      2022-06-24
      回复
    查看更多(5)
登录 后发表内容