赞
踩
主要介绍了uni-file-picker文件选择上传,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
上传一张:
- <template>
- <view class="container example">
- <uni-forms ref="baseForm" :modelValue="baseFormData" label-position="top">
- <uni-forms-item label="图片上传">
- <uni-file-picker
- v-model="imageValue"
- fileMediatype="image"
- mode="grid"
- @select="select"
- limit="1"
- ></uni-file-picker>
- </uni-forms-item>
- </uni-forms>
- </view>
- </template>
- export default {
- data() {
- return {
- //图片
- imageValue:[],
- }
- },
- methods:{
- //图片上传
- select(e){
- const tempFilePaths = e.tempFilePaths;
- //获取图片临时路径
- const imgUrl=tempFilePaths[0

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。