收藏
回答

为什么上传图片一直转圈?

let _this = this;

uni.chooseImage({

count: 1,

mediaType: ['image', 'video'],

async success(res) {

uni.showLoading({

title: '上传中'

})

const tempFilePaths = res.tempFilePaths

wx.uploadFile({

url: '*******************************', //仅为示例,非真实的接口地址

filePath: tempFilePaths[0],

name: 'file',

formData: {

'file': tempFilePaths

},

success(res) {

const data = JSON.parse(res.data)

if (data.code == 1) {

uni.showToast({

title: '上传成功',

duration: 2000,

icon: 'none'

})

_this.$set(_this.form, 'picture', data.url);

uni.hideLoading()

} else {

uni.showToast({

title: '上传失败',

duration: 2000,

icon: 'none'

})

}

}

})

}

});


小程序的后台也配置了上传的域名 一直是可以的 但是突然就不行了 有人知道是为什么嘛

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

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2023-07-02

    开发者工具上也不行吗 这问题只能靠猜,别人没办法知道为什么

    2023-07-02
    有用
    回复 2
    • 清心.
      清心.
      2023-07-02
      开发工具上都没问题 然后我用真机的话跟线上是一样的 就是接口亮红色 然后转圈 一直没问题 今天突然就这样转圈了线上 服务器看了也没跑满
      2023-07-02
      回复
    • Mr.Zhao
      Mr.Zhao
      2023-07-02回复清心.
      不走success 就是fail,看看卡在什么地方
      2023-07-02
      回复
登录 后发表内容