/*! For license information please see 4729.e43ef212.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["4729"],{80136:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Uploader

\n

Intro

\n

Used to upload a local image or file to the server and display a preview image and upload progress during the upload process. The Uploader component does not currently contain the interface logic for uploading files to the server, this step needs to be implemented by the user.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Uploader } from 'vant';\n\nconst app = createApp();\napp.use(Uploader);\n
\n

Usage

\n

Basic Usage

\n
<van-uploader :after-read="afterRead" />\n
\n
export default {\n  setup() {\n    const afterRead = (file) => {\n      console.log(file);\n    };\n\n    return {\n      afterRead,\n    };\n  },\n};\n
\n

Preview File

\n
<van-uploader v-model="fileList" multiple />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const fileList = ref([\n      { url: 'https://fastly.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },\n      { url: 'https://cloud-image', isImage: true },\n    ]);\n\n    return {\n      fileList,\n    };\n  },\n};\n
\n

Upload Status

\n
<van-uploader v-model="fileList" :after-read="afterRead" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const fileList = ref([\n      {\n        url: 'https://fastly.jsdelivr.net/npm/@vant/assets/leaf.jpeg',\n        status: 'uploading',\n        message: 'Uploading...',\n      },\n      {\n        url: 'https://fastly.jsdelivr.net/npm/@vant/assets/tree.jpeg',\n        status: 'failed',\n        message: 'Failed',\n      },\n    ]);\n\n    const afterRead = (file) => {\n      file.status = 'uploading';\n      file.message = 'Uploading...';\n\n      setTimeout(() => {\n        file.status = 'failed';\n        file.message = 'Failed';\n      }, 1000);\n    };\n\n    return {\n      fileList,\n      afterRead,\n    };\n  },\n};\n
\n

Max Count

\n
<van-uploader v-model="fileList" multiple :max-count="2" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const fileList = ref([]);\n\n    return {\n      fileList,\n    };\n  },\n};\n
\n

Max Size

\n
<van-uploader multiple :max-size="500 * 1024" @oversize="onOversize" />\n
\n
import { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const onOversize = (file) => {\n      console.log(file);\n      showToast('File size cannot exceed 500kb');\n    };\n\n    return {\n      onOversize,\n    };\n  },\n};\n
\n

If you need to make different size limits for different types of files, you can pass a function to the max-size props.

\n
<van-uploader multiple :max-size="isOverSize" />\n
\n
export default {\n  setup() {\n    const isOverSize = (file) => {\n      const maxSize = file.type === 'image/jpeg' ? 500 * 1024 : 1000 * 1024;\n      return file.size >= maxSize;\n    };\n    return {\n      isOverSize,\n    };\n  },\n};\n
\n

Custom Upload Area

\n
<van-uploader>\n  <van-button icon="plus" type="primary">Upload Image</van-button>\n</van-uploader>\n
\n

Preview Cover

\n
<van-uploader v-model="fileList">\n  <template #preview-cover="{ file }">\n    <div class="preview-cover van-ellipsis">{{ file.name }}</div>\n  </template>\n</van-uploader>\n\n<style>\n  .preview-cover {\n    position: absolute;\n    bottom: 0;\n    box-sizing: border-box;\n    width: 100%;\n    padding: 4px;\n    color: #fff;\n    font-size: 12px;\n    text-align: center;\n    background: rgba(0, 0, 0, 0.3);\n  }\n</style>\n
\n

Preview Size

\n

Using preview-size prop to custom the size of preview image.

\n
<!-- The default unit is px -->\n<van-uploader v-model="fileList" preview-size="60" />\n<!-- Support other units, such as rem, vh, vw -->\n<van-uploader v-model="fileList" preview-size="5rem" />\n
\n

You can set the width and height separately.

\n
<van-uploader v-model="fileList" :preview-size="[60, 40]" />\n
\n

Before Read

\n
<van-uploader :before-read="beforeRead" />\n
\n
import { showToast } from 'vant';\n\nexport default {\n  setup() {\n    // \u8FD4\u56DE\u5E03\u5C14\u503C\n    const beforeRead = (file) => {\n      if (file.type !== 'image/jpeg') {\n        showToast('Please upload an image in jpg format');\n        return false;\n      }\n      return true;\n    };\n\n    // \u8FD4\u56DE Promise\n    const asyncBeforeRead = (file) =>\n      new Promise((resolve, reject) => {\n        if (file.type !== 'image/jpeg') {\n          showToast('Please upload an image in jpg format');\n          reject();\n        } else {\n          const img = new File(['foo'], 'bar.jpg', {\n            type: 'image/jpeg',\n          });\n          resolve(img);\n        }\n      });\n\n    return {\n      beforeRead,\n      asyncBeforeRead,\n    };\n  },\n};\n
\n

Disable Uploader

\n

Use disabled prop to disable uploader.

\n
<van-uploader disabled />\n
\n

Customize Single Preview Image Style

\n
<van-uploader v-model="fileList" :deletable="false" />\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const fileList = ref([\n      {\n        url: 'https://fastly.jsdelivr.net/npm/@vant/assets/sand.jpeg',\n        deletable: true,\n        beforeDelete: () => {\n          showToast(\n            'Customize the events and styles of a single preview image',\n          );\n        },\n      },\n      {\n        url: 'https://fastly.jsdelivr.net/npm/@vant/assets/tree.jpeg',\n        imageFit: 'contain',\n      },\n    ]);\n\n    return { fileList };\n  },\n};\n
\n

Enable Reupload

\n
<van-uploader v-model="fileList" reupload max-count="2" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const fileList = ref([\n      { url: 'https://fastly.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },\n    ]);\n\n    return { fileList };\n  },\n};\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-modelList of uploaded filesFileListItem[]-
acceptAccepted file typestringimage/*
nameInput name, usually a unique string or numbernumber | string-
preview-sizeSize of preview imagenumber | string | Array80px
preview-imageWhether to show image previewbooleantrue
preview-full-imageWhether to show full screen image preview when image is clickedbooleantrue
preview-optionsOptions of full screen image preview, see ImagePreviewobject-
multipleWhether to enable multiple selection picturesbooleanfalse
disabledWhether to disabled the uploadbooleanfalse
readonlyWhether to make upload area readonlybooleanfalse
deletableWhether to show delete iconbooleantrue
reupload v4.4.0Whether to enable reupload, if enabled, the image preview will be disabledbooleanfalse
show-uploadWhether to show upload areabooleantrue
lazy-loadWhether to enable lazy load, should register Lazyload componentbooleanfalse
captureCapture, can be set to camerastring-
after-readHook after reading the fileFunction-
before-readHook before reading the file, return false to stop reading the file, can return PromiseFunction-
before-deleteHook before delete the file, return false to stop reading the file, can return PromiseFunction-
max-sizeMax size of filenumber | string | (file: File) => booleanInfinity
max-countMax count of imagenumber | stringInfinity
result-typeType of file read result, can be set to file textstringdataUrl
upload-textUpload textstring-
image-fitPreview image fit modestringcover
upload-iconUpload iconstringphotograph
\n
\n

Tips: accept, capture and multiple are the attributes of the native input tag, there may be some compatibility issues under different systems and WebView.

\n
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
oversizeEmitted when file size over limitSame as after-read
click-uploadEmitted when click upload areaevent: MouseEvent
click-previewEmitted when preview image is clickedSame as after-read
click-reuploadEmitted when reupload image is clickedSame as after-read
close-previewEmitted when the full screen image preview is closed-
deleteEmitted when preview file is deletedSame as after-read
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionSlotProps
defaultCustom upload area-
preview-deleteCustom delete icon-
preview-coverCustom content that covers the image previewitem: FileListItem
\n

Parameters of before-read\u3001after-read\u3001before-delete

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionType
fileFile objectobject
detailDetail info, contains name and indexobject
\n

ResultType

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ValueDescription
fileResult contains File object
textResult contains File object and text content
dataUrlResult contains File object and base64 content
\n

Methods

\n

Use ref to get Uploader instance and call instance methods.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionAttributeReturn value
closeImagePreviewClose full screen image preview--
chooseFileTrigger choosing files, works with the user action context only because of browser security--
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  UploaderProps,\n  UploaderInstance,\n  UploaderResultType,\n  UploaderFileListItem,\n} from 'vant';\n
\n

UploaderInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { UploaderInstance } from 'vant';\n\nconst uploaderRef = ref<UploaderInstance>();\n\nuploaderRef.value?.chooseFile();\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-uploader-size80px-
--van-uploader-icon-size24px-
--van-uploader-icon-colorvar(--van-gray-4)-
--van-uploader-text-colorvar(--van-text-color-2)-
--van-uploader-text-font-sizevar(--van-font-size-sm)-
--van-uploader-upload-backgroundvar(--van-gray-1)-
--van-uploader-upload-active-colorvar(--van-active-color)-
--van-uploader-delete-colorvar(--van-white)-
--van-uploader-delete-icon-size14px-
--van-uploader-delete-backgroundrgba(0, 0, 0, 0.7)-
--van-uploader-file-backgroundvar(--van-background)-
--van-uploader-file-icon-size20px-
--van-uploader-file-icon-colorvar(--van-gray-7)-
--van-uploader-file-name-padding0 var(--van-padding-base)-
--van-uploader-file-name-margin-topvar(--van-padding-xs)-
--van-uploader-file-name-font-sizevar(--van-font-size-sm)-
--van-uploader-file-name-text-colorvar(--van-gray-7)-
--van-uploader-mask-text-colorvar(--van-white)-
--van-uploader-mask-backgroundfade(var(--van-gray-8), 88%)-
--van-uploader-mask-icon-size22px-
--van-uploader-mask-message-font-sizevar(--van-font-size-sm)-
--van-uploader-mask-message-line-heightvar(--van-line-height-xs)-
--van-uploader-loading-icon-size22px-
--van-uploader-loading-icon-colorvar(--van-white)-
--van-uploader-disabled-opacityvar(--van-disabled-opacity)-
--van-uploader-border-radius0px-
\n

FAQ

\n

How do I know if the user has granted camera permission?

\n

When uploading an image, if the user has not granted camera permission to the current app, the Uploader component will not work.

\n

You can determine if camera permission has been granted by using the getUserMedia method provided by the browser (please note that the getUserMedia method cannot be used in iOS 10).

\n

Here is a simplified example:

\n
navigator.mediaDevices\n  .getUserMedia({ video: true })\n  .then((stream) => {\n    console.log(stream);\n  })\n  .catch((err) => {\n    console.log(err);\n  });\n
\n
'},null,8,e))}}}]);