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'
})
}
}
})
}
});
小程序的后台也配置了上传的域名 一直是可以的 但是突然就不行了 有人知道是为什么嘛
开发者工具上也不行吗 这问题只能靠猜,别人没办法知道为什么