当前位置:   article > 正文

uniapp中uview组件库的丰富Upload 上传上午用法_uview uupload

uview uupload

目录

基础用法

#上传视频

#文件预览

#隐藏上传按钮

#限制上传数量

#自定义上传样式

API

#Props

#Methods

#Slot

#Events


基础用法

  • 可以通过设置fileList参数(数组,元素为对象),显示预置的图片。其中元素的url属性为图片路径
  1. <template>
  2. <u-upload
  3. :fileList="fileList1"
  4. @afterRead="afterRead"
  5. @delete="deletePic"
  6. name="1"
  7. multiple
  8. :maxCount="10"
  9. ></u-upload>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. fileList1: [],
  16. }
  17. },
  18. methods:{
  19. // 删除图片
  20. deletePic(event) {
  21. this[`fileList${event.name}`].splice(event.index, 1)
  22. },
  23. // 新增图片
  24. async afterRead(event) {
  25. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  26. let lists = [].concat(event.file)
  27. let fileListLen = this[`fileList${event.name}`].length
  28. lists.map((item) => {
  29. this[`fileList${event.name}`].push({
  30. ...item,
  31. status: 'uploading',
  32. message: '上传中'
  33. })
  34. })
  35. for (let i = 0; i < lists.length; i++) {
  36. const result = await this.uploadFilePromise(lists[i].url)
  37. let item = this[`fileList${event.name}`][fileListLen]
  38. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  39. status: 'success',
  40. message: '',
  41. url: result
  42. }))
  43. fileListLen++
  44. }
  45. },
  46. uploadFilePromise(url) {
  47. return new Promise((resolve, reject) => {
  48. let a = uni.uploadFile({
  49. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  50. filePath: url,
  51. name: 'file',
  52. formData: {
  53. user: 'test'
  54. },
  55. success: (res) => {
  56. setTimeout(() => {
  57. resolve(res.data.data)
  58. }, 1000)
  59. }
  60. });
  61. })
  62. },
  63. }
  64. }
  65. </script>

#上传视频

  • 通过设置accept='video'属性,将上传改为视频上传。
  1. <u-upload
  2. :fileList="fileList2"
  3. @afterRead="afterRead"
  4. @delete="deletePic"
  5. name="2"
  6. multiple
  7. :maxCount="10"
  8. accept="video"
  9. ></u-upload>
  10. <!-- data 方法请参考 基本用法 -->
  11. data(){
  12. return{
  13. fileList2: [],
  14. }
  15. }

#文件预览

  • 通过设置:previewFullImage="true"'属性,达到文件预览的目的。
  1. <u-upload
  2. :fileList="fileList3"
  3. @afterRead="afterRead"
  4. @delete="deletePic"
  5. name="3"
  6. multiple
  7. :maxCount="10"
  8. :previewFullImage="true"
  9. ></u-upload>
  10. <!-- data 方法请参考 基本用法 -->
  11. data(){
  12. return{
  13. fileList3: [{
  14. url: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
  15. }],
  16. }
  17. }

#隐藏上传按钮

  • 上传数量等于maxCount所规定的数据时,隐藏上传按钮。
  1. <u-upload
  2. :fileList="fileList4"
  3. @afterRead="afterRead"
  4. @delete="deletePic"
  5. name="4"
  6. multiple
  7. :maxCount="2"
  8. ></u-upload>
  9. <!-- data 方法请参考 基本用法 -->
  10. data(){
  11. return{
  12. fileList4: [{
  13. url: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
  14. },
  15. {
  16. url: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
  17. }
  18. ],
  19. }
  20. }

#限制上传数量

  • 同上,规定maxCount的数据时。
  1. <u-upload
  2. :fileList="fileList5"
  3. @afterRead="afterRead"
  4. @delete="deletePic"
  5. name="5"
  6. multiple
  7. :maxCount="3"
  8. ></u-upload>
  9. <!-- data 方法请参考 基本用法 -->
  10. data(){
  11. return{
  12. fileList5: [],
  13. }
  14. }

#自定义上传样式

  • 添加image以自定义上传样式,达到身份证,银行卡等不同场景需求。
  1. <u-upload
  2. :fileList="fileList6"
  3. @afterRead="afterRead"
  4. @delete="deletePic"
  5. name="6"
  6. multiple
  7. :maxCount="1"
  8. width="250"
  9. height="150"
  10. >
  11. <image src="https://cdn.uviewui.com/uview/demo/upload/positive.png"
  12. mode="widthFix" style="width: 250px;height: 150px;"></image>
  13. </u-upload>
  14. <!-- data 方法请参考 基本用法 -->
  15. data(){
  16. return{
  17. fileList6: [],
  18. }
  19. }

API

#Props

参数说明类型默认值可选值
accept接受的文件类型,file只支持H5(只有微信小程序才支持把accept配置为all、media)Stringimageall | media | image | file | video
capture图片或视频拾取模式,当accept为image类型时设置capture可选额外camera可以直接调起摄像头String | Array['album', 'camera']-
compressed当accept为video时生效,是否压缩视频,默认为trueBooleantruefalse
camera当accept为video时生效,可选值为back或frontStringback-
maxDuration当accept为video时生效,拍摄视频最长拍摄时间,单位秒Number60true
uploadIcon上传区域的图标,只能内置图标Stringcamera-fill-
uploadIconColor上传区域的图标的颜色String#D3D4D6-
useBeforeRead是否启用(显示/隐藏)组件Booleanfalsetrue
previewFullImagepreviewFullImageBooleantruefalse
maxCount最大选择图片的数量String | Number52-
disabled是否启用(显示/隐藏)组件Booleanfalsetrue
imageMode预览上传的图片时的裁剪模式,和image组件mode属性一致StringaspectFill-
name标识符,可以在回调函数的第二项参数中获取Stringfile-
sizeTypeoriginal 原图,compressed 压缩图,默认二者都有,H5无效Array<String>['original', 'compressed']-
multiple是否开启图片多选,部分安卓机型不支持Booleanfalsetrue
deletable是否显示删除图片的按钮Booleantruefalse
maxSize选择单个文件的最大大小,单位B(byte),默认不限制String | NumberNumber.MAX_VALUE-
fileList显示已上传的文件列表Array--
uploadText上传区域的提示文字String--
width内部预览图片区域和选择图片按钮的区域宽度,单位rpx,不能是百分比,或者autoString | Number80-
height内部预览图片区域和选择图片按钮的区域高度,单位rpx,不能是百分比,或者autoString | Number80-
previewImage是否在上传完成后展示预览图Booleantruefalse

#Methods

此方法如要通过ref手动调用

名称说明
afterRead读取后的处理函数
beforeRead读取前的处理函数

#Slot

slot中您可以内置任何您所需要的样式。

名称说明
-(default)自定义上传样式

#Events

回调参数中的event参数,为当前删除元素的所有信息,index为当前操作的图片的索引,name为删除名称,file包含删除的url信息

事件名说明回调参数
afterRead读取后的处理函数(file, lists, name),错误信息
beforeRead读取前的处理函数(file, lists, name),错误信息
oversize图片大小超出最大允许大小(file, lists, name), name为通过props传递的index参数
clickPreview全屏预览图片时触发(url, lists, name),url为当前选中的图片地址,index为通过props传递的index参数
delete删除图片传递index 回调 event 参数 包含index,file,name
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/470923
推荐阅读
相关标签
  

闽ICP备14008679号