uni-app 小程序多图上传

uni-app 小程序多图上传:

官方提示说,App支持多文件上传,微信小程序只支持单文件上传,传多个文件需要反复调用本API。所以跨端的写法就是循环调用本API

步骤:

//1.首先通过 uni.chooseImage接口获取到一个本地资源的临时文件路径
// this.uploadFiles  => 图片临时路径集合
uni.chooseImage({
	count: 9, //默认9
	sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
	sourceType: ['album'], //从相册选择
	success: res => {
		for (let i = 0; i < res.tempFilePaths.length; i++) {
			this.uploadFiles.push(res.tempFilePaths[i]);
		}
	}
});
//2.确认上传
let arr = [];
for (let i = 0; i < this.uploadFiles.length; i++) {
	let pro = uni.uploadFile({
		url: '开发者服务器 url',
		filePath: this.uploadFiles[i],
		fileType: 'image',
		name: 'file',
		header: {
			'Content-Type': 'multipart/form-data',
			token: uni.getStorageSync('token')
		}
	});
	arr.push(pro);
}
Promise.all(arr).then(result => {
	let pic = '';
	result.forEach(item => {
		pic += JSON.parse(item[1].data).msg + ';';
	});
	console.log(pic)
})
//3.删除图片
DelImg(e) {
	uni.showModal({
		title: '提示',
		content: '确定要删除这张照片吗?',
		cancelText: '再想想',
		confirmText: '再见',
		success: res => {
			if (res.confirm) {
				this.uploadFiles.splice(e.currentTarget.dataset.index, 1);
			}
		}
	});
}
//4.图片预览
ViewImage(e) {
	uni.previewImage({
		urls: this.uploadFiles,
		current: e.currentTarget.dataset.url
	});
},
//5.想起啥再写吧

你可能感兴趣的:(uni-app,小程序多图上传,uni.uploadFile)