先说现象:uni-app文件上传,uni.uploadFile在h5端很好,但是打包成APP,在APP端上传却不行,经过请教官网,发现如果是真机,需要设置uri,直接上代码

async handleUploadImg() {
	let files = [];
	for (let item of this.uploadImgList) {
		files.push({
			name: 'files',
			file: item.file,
			uri : item.filePath
		});
	}
	let params = {
		file: files
	}
	return this.$getData.UploadPics(params).then((res) => {
		this.fileId = res.data;
	});
},
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐