当前位置:   article > 正文

uniapp上传图片 (uni-file-picker)_uni-file-picker实现图片上传

uni-file-picker实现图片上传

使用的是uniapp官方文档扩展组件

点击跳转

下面代码中详细参数请点击官方文档查看

<template>
	<view>
		
			<uni-file-picker
				v-model="imageValue" 
				fileMediatype="image" 
				mode="grid"
				limit="1"
				@select="select"
				@progress="progress" 
				@success="success" 
				@fail="fail" 
			></uni-file-picker>
		
		<view class="btn" @click="upData">
			立即提交
		</view>
	</view>
</template>
<script>
	import {UploadImg,UpDataImg} from '@/api/order.js'
	export default {
		data() {
			return {
				imageValue:[],
				file:'',
				isLogin:'',
				resquestUrl:'',
				imgLuJing:''
			}
		},
		onLoad() {
		},
		methods:{
			uploadFile() {
			 uni.showLoading({
			 	title: '上传中'
			 });
			 
			  const formData = new FormData(); // 创建一个 FormData 对象
			  formData.append('file', this.file); // 将文件添加到 FormData 中
			 
			  var uploadTask = uni.uploadFile({
			    url: 'http:106.xx.xx.xx/product/updateProductImage', // 接口地址
			    filePath: this.file.path, // 文件路径(可选)
			    name: 'image', // 后台服务器接收文件的字段名
			    // formData: formData, // 传递的额外数据
			    success: (res) => {
					uni.hideLoading();
					uni.showToast({
						title: '上传成功',
						duration: 1000,
						icon:'none'
					});
				  this.imgLuJing = JSON.parse(res.data)
			
			    },
			    fail: (err) => {
					uni.showToast({
						title: '上传失败,请重试',
						duration: 1000,
						icon:'none'
					});
			      // console.error(err,"上传失败");
			    },
			  });
			},
			upData(){
				//调接口上传图片
			},
		
			// 获取上传状态
			select(e){
				this.file = e.tempFiles[0].file
				// console.log('选择文件:',this.file)
				this.uploadFile()
			},
			// 获取上传进度
			progress(e){
				console.log('上传进度:',e)
			},
			
			
		}
	}
</script>
<style lang="scss">
	.btn{
		width: 208px;
		height: 40px;
		margin: 0px auto;
		background: linear-gradient(180deg, #00A5FE 0%, #007BFD 100%);
		border-radius: 49px 49px 49px 49px;
		opacity: 1;
		margin-top: 100px;
		color: #fff;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}
</style>


 
  • 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
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105

上传图片接口实例

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/183469?site
推荐阅读
相关标签
  

闽ICP备14008679号