当前位置: 首页 > article >正文

uniapp 实现 uni-file-picker 效果

模板

<uni-forms-item label="营业执照" required name="xkz_pic">
			<view class="example-body">
				<uni-file-picker 
				    v-model="fileLists" 
					file-mediatype="image" 
					file-extname="png,jpg,jpeg"
					:image-styles="imageStyles"
					:limit="1"
					title="上传营业执照,图片大小不超过2M的文件"
					@select="uploadSelect" 
					@success="uploadSuccess"
					@fail="uploadFail" 
					@delete="uploadDel"
				>
				</uni-file-picker>
			</view>

			
</uni-forms-item>

javascript

//更新营业执照,必须使用computed,如果使用接口返回的图片地址,图片不会渲染
const fileLists=computed({
	//取值
	get(){
		
		let list = [];
		let url=baseurl+dataFormAdd.xkz_pic
		let extname=url.substring(url.lastIndexOf(".")+1)
		let item={
				url: url,
				extname: extname,
				name: 'yyzz'+extname
			
		}
		if(dataFormAdd.xkz_pic){
			list.push(item)
		}
		
		return list
	},
	
	//设置值
	set(value){
		console.log('设置值',value)
		console.log(value.length)
		if(value.length==0){
			dataFormAdd.xkz_pic=''
		}
	}

})
//核心代码,选择图片

const uploadSelect=(e)=>{
	console.log('选择图片',e)
	//#ifdef H5
	// h5上传-需要文件file对象
	const tempFilePaths = e.tempFiles[0].file;
	//#endif
	//#ifdef MP-WEIXIN
	// 微信小程序上传-需要微信临时提供临时地址
	const tempFilePaths = e.tempFilePaths;
	//#endif

	console.log('临时路径',tempFilePaths[0],uploadPicAction)
	//上传文件
	uni.uploadFile({
	                    
						//#ifdef H5
						url:uploadPicAction,
						//#endif
						//#ifdef MP-WEIXIN
						url: 'http://www.baidu.cn/upload/uploadimage',
						//#endif
	                    // 要上传文件对象-h5和微信小程序上传参数不一样只能存在一个
	                    // H5上传
						//#ifdef H5
						 file: tempFilePaths,
						//#endif
						
						//#ifdef MP-WEIXIN
						// 微信小程序上传
						filePath: tempFilePaths[0],
						//#endif
	                    //文件对应的 key , 开发者在服务器端通过这个 key 可以获取到文件二进制内容
	                    name: 'file',
	                    // 请求头设置
	                    // 我们是需要token和用户id登录时存从uni-app数据存储中取
	                    // header: {
	                    //     "token": uni.getStorageSync('token'),
	                    //     "tenant-id": uni.getStorageSync('tenant-id')
	                    // },
	                    // 成功函数
	                    success: (res) => {
	                        // uni.uploadFile默认在外面包了一层data
	                        console.log('上传成功', res.data);
							// uni.uploadFile返回来的结果默认是JSON格式字符串,需要用JSON.parse转换成js对象
	                        console.log('上传数据转换',JSON.parse(res.data));
	                        // 取到文档服务器的值
	                        let uploaddata = JSON.parse(res.data)
							let url=uploaddata.data.url
	                        let x = {}
	                        // 下面3个值是uni-app规定的一个不能少
	                        x.url = url
	                        x.extname = url.substring(url.lastIndexOf(".")+1)
	                        x.name = '营业执照'
							dataFormAdd.xkz_pic=url
	                        //fileLists.value.push(x)
							//fileLists.push(x)
							//fileLists.value=x
							//console.log('文件列表',fileLists.value, x,dataFormAdd)
							
	                    },
	                    // 失败提示用户重新上传
	                    fail: error => {
	                        console.log('失败', error);
	                    }
	                })
	

	
}
//删除图片

const uploadDel=(e)=>{

	console.log('删除图片',e)
	//dataFormAdd.xkz_pic=''
}


//上传成功
const uploadSuccess=(e)=>{
	//没有uniCloud上传空间,不会触发,当时这个地方困扰了好久,所以没有上传空间,只能通过uploadSelect来实现上传控制
	
	console.log('上传成功',e)
}

//上传失败
const uploadFail=(e)=>{
	//没有uniCloud上传空间,不会触发
	console.log('上传失败',e)
}


http://www.kler.cn/a/421291.html

相关文章:

  • Spire.PDF for .NET【页面设置】演示:旋转 PDF 中的页面
  • Flutter 之 InheritedWidget
  • 如何手搓一个智能激光逗猫棒
  • Redis 之持久化
  • Milvus×OPPO:如何构建更懂你的大模型助手
  • 在Scala中Array不可变的学习
  • 【继承】—— 我与C++的不解之缘(十九)
  • 秒杀 重复下单 详解
  • Unity AssetBundles(AB包)
  • stm32 spi接口传输asm330l速率优化(及cpu和dma方式对比)
  • 威联通-001 手机相册备份
  • docker.io连接超时的处理,用代理网站
  • 接口隔离原则理解和实践
  • 计算机网络-网络安全
  • 游戏引擎学习第31天
  • k8s 资源管理resourceQuota
  • Luma AI技术浅析(五):GAN 改进技术
  • qemu 9.1.2 源码编译
  • ffmpeg拼接两个视频的一种可行方法
  • Android10 设备死机的问题分析和解决
  • python使用python-docx处理word
  • brynet源码阅读——http组件和wrapper组件
  • Reinforcement Learning with Human in the Loop Human Feedback
  • 【漏洞复现】海信智能公交企业管理系统 apply.aspx SQL注入漏洞
  • SIMD与SIMT
  • 刷leetcode hot100--3贪心(30min,看思路)