uniapp 之 图片 视频 文件上传

javascript 复制代码
<view class="" style="padding: 24rpx 0">
				<text>相关资料 <text class="fs-26 color-666">(图片、视频、文档不超过9个)</text> </text>
				<view class="flex align-center" style="margin-top: 17rpx;">
					<u-upload accept="all" :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple
						:maxCount="9">
					</u-upload>
				</view>
			</view>
javascript 复制代码
submit() {
				if (this.fileList1.length) {
					let urls = [];
					this.fileList1.forEach(el => {
						urls.push({
							type: el.types,
							url: el.url,
						})
					});
					this.info.pic = JSON.stringify(urls);
				}
				uni.showModal({
					title: '',
					content: '确认提交?',
					success: res => {
						if (res.confirm) {
							// 创建订单
							this.$http({
								url: "/api",
								data: this.info,
							}).then(res1 => {
								uni.$u.toast('提交成功');
								setTimeout(()=>{
									this.$xf.on('/pages/mine');
								},2000)
								
							})
						} else if (res.cancel) {
							console.log('用户点击取消');
						}
					}
				});
			},
			// 删除图片
			deletePic(event) {
				this[`fileList${event.name}`].splice(event.index, 1);
			},
			// 新增图片
			async afterRead(event) {
				// 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
				let lists = [].concat(event.file);
				let fileListLen = this[`fileList${event.name}`].length;
				lists.map((item) => {
					this[`fileList${event.name}`].push({
						...item,
						status: "uploading",
						message: "上传中",
					});
				});
				for (let i = 0; i < lists.length; i++) {
					// 接口返回数据
					const result = await this.uploadFilePromise(lists[i].url);
					let item = this[`fileList${event.name}`][fileListLen];
					if (item.type == "video") {
						item.types = 2;
					} else if (item.type == "image") {
						item.types = 1;
					} else {
						item.types = 3;
					}
					this[`fileList${event.name}`].splice(
						fileListLen,
						1,
						Object.assign(item, {
							status: "success",
							message: "",
							url: JSON.parse(result).data.url,
						})
					);
					fileListLen++;
				}
				console.log(this.fileList1);
			},
			uploadFilePromise(url) {
				return new Promise((resolve, reject) => {
					let a = uni.uploadFile({
						url: getApp().globalData.baseURL + "/api", // 仅为示例,非真实的接口地址
						filePath: url,
						name: "file",
						header: {
							"Authorization": uni.getStorageSync("token")
						},
						success: (res) => {
							setTimeout(() => {
								resolve(res.data);
							}, 500);
						},
					});
				});
			},
相关推荐
雨雨雨雨雨别下啦7 分钟前
【从0开始学前端】从0搭建uni-app小程序脚手架
小程序·uni-app
AnalogElectronic2 小时前
uniapp学习8,电动车充电小程序
学习·小程序·uni-app
2501_915921432 小时前
iPhone 定位功能测试时不越狱来修改手机位置的方法
android·ios·智能手机·小程序·uni-app·iphone·webview
TE-茶叶蛋3 小时前
安卓应用(uniapp开发)分享微信-申请appid
android·微信·uni-app
AnalogElectronic3 小时前
uniapp学习9,同时兼容h5和微信小程序的百度地图组件
学习·微信小程序·uni-app
游戏开发爱好者83 小时前
iOS 开发进阶,用 SniffMaster 实现 iPhone 抓包深度分析
android·ios·小程序·https·uni-app·iphone·webview
AnalogElectronic17 小时前
uniapp学习5,兼容微信小程序的俄罗斯方块游戏
学习·微信小程序·uni-app
AnalogElectronic1 天前
uniapp学习6,滚动字幕播报
javascript·学习·uni-app
AnalogElectronic1 天前
uniapp学习3,简易记事本
学习·uni-app
Можно1 天前
uni-app 三端上线全流程指南:H5 / 小程序 / App 完整发布手册
小程序·uni-app