当前位置:   article > 正文

uniapp 微信小程序 图片上传方法 uploadFilePromise 图片上传到服务器

uploadfilepromise

http.js

/**
 * 上传图片
 */
function uploadFilePromise(url){
	uni.showLoading({
		title: '图片上传中',
		mask: true
	});	
	return new Promise((resolve, reject) => {
		let a = uni.uploadFile({
			url: config.picBaseUrl+'file/imgUpload', //图片服务器上传地址
			filePath: url,
			name: 'file',
			header: {
				'Authorization': uni.getStorageSync('Authorization')
			},
			dataType: 'json',
			success: (res) => {
				console.log("res:",res);
				uni.hideLoading();
				if(res.statusCode == 200){
					let data = JSON.parse(res.data);
					resolve(data.data)
				}else if(res.statusCode == 403){
					//403时移出相关的登录信息
					uni.removeStorageSync("Authorization");
					uni.removeStorageSync("userinfo");
					uni.removeStorageSync('authorities')					
					uni.showToast({
						title:res.data,
						icon:"none"
					})
					setTimeout(()=>{						
						uni.navigateTo({
							url:"/pages/login/login"
						})
					},1000)
				}else{
					uni.showToast({
						title:res.data,
						icon:"none"
					})
				}
			},
			fail: function (err) {
				console.log("err:",err);
				uni.hideLoading();
			}
		});
	})
}

module.exports = {
	uploadFilePromise
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/928220
推荐阅读
相关标签
  

闽ICP备14008679号