2020-08-13 15:18:26 +08:00
## Carga de archivos
Carga archivos haciendo clic o arrastrándolos.
### Clic para cargar archivos
:::demo Personalice el tipo y texto del botón utilizando la propiedad `slot` . Defina las propiedades `limit` y `on-exceed` para limitar el número máximo de archivos a subir y especifique un método para cuando el límite ha sido excedido.
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
multiple
:limit="3"
:on-exceed="handleExceed"
2021-09-04 19:29:28 +08:00
:file-list="fileList"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
2020-11-20 23:29:50 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" >
Solo archivos jpg/png con un tamaño menor de 500kb
< / div >
2020-11-20 23:29:50 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2021-09-04 19:29:28 +08:00
fileList: [
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
{
name: 'food2.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2021-09-04 19:29:28 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePreview(file) {
2021-09-04 19:29:28 +08:00
console.log(file)
2020-08-13 15:18:26 +08:00
},
handleExceed(files, fileList) {
2021-09-04 19:29:28 +08:00
this.$message.warning(
`El límite es 3, haz seleccionado ${
files.length
} archivos esta vez, añade hasta ${files.length + fileList.length}`
)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Cargar avatar de usuario
Utilice el _hook_ `before-upload` para limitar el formato de archivo y su tamaño.
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="avatar-uploader"
action="https://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
2021-09-04 19:29:28 +08:00
:before-upload="beforeAvatarUpload"
>
< img v-if = "imageUrl" :src = "imageUrl" class = "avatar" / >
2020-08-13 15:18:26 +08:00
< i v-else class = "el-icon-plus avatar-uploader-icon" > < / i >
< / el-upload >
< style >
.avatar-uploader .el-upload {
border: 1px dashed #d9d9d9 ;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.avatar-uploader .el-upload:hover {
2021-09-04 19:29:28 +08:00
border-color: #409eff ;
2020-08-13 15:18:26 +08:00
}
.avatar-uploader-icon {
font-size: 28px;
color: #8c939d ;
width: 178px;
height: 178px;
line-height: 178px;
text-align: center;
}
.avatar {
width: 178px;
height: 178px;
display: block;
}
< / style >
< script >
export default {
data() {
return {
2021-09-04 19:29:28 +08:00
imageUrl: '',
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleAvatarSuccess(res, file) {
2021-09-04 19:29:28 +08:00
this.imageUrl = URL.createObjectURL(file.raw)
2020-08-13 15:18:26 +08:00
},
beforeAvatarUpload(file) {
2021-09-04 19:29:28 +08:00
const isJPG = file.type === 'image/jpeg'
const isLt2M = file.size / 1024 / 1024 < 2
2020-08-13 15:18:26 +08:00
if (!isJPG) {
2021-09-04 19:29:28 +08:00
this.$message.error('La imagen debe estar en formato JPG!')
2020-08-13 15:18:26 +08:00
}
if (!isLt2M) {
2021-09-04 19:29:28 +08:00
this.$message.error('La imagen excede los 2MB!')
2020-08-13 15:18:26 +08:00
}
2021-09-04 19:29:28 +08:00
return isJPG & & isLt2M
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Pared de fotografías
Utilice la propiedad `list-type` para cambiar el estilo a un listado de archivos.
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
action="https://jsonplaceholder.typicode.com/posts/"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
2021-09-04 19:29:28 +08:00
:on-remove="handleRemove"
>
2020-08-13 15:18:26 +08:00
< i class = "el-icon-plus" > < / i >
< / el-upload >
2020-12-12 00:23:46 +08:00
< el-dialog v-model = "dialogVisible" >
2021-09-04 19:29:28 +08:00
< img width = "100%" :src = "dialogImageUrl" alt = "" / >
2020-08-13 15:18:26 +08:00
< / el-dialog >
< script >
export default {
data() {
return {
dialogImageUrl: '',
2021-09-04 19:29:28 +08:00
dialogVisible: false,
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2021-09-04 19:29:28 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePictureCardPreview(file) {
2021-09-04 19:29:28 +08:00
this.dialogImageUrl = file.url
this.dialogVisible = true
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Custom file thumbnail
Use `scoped-slot` to change default thumbnail template.
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
2021-09-04 19:29:28 +08:00
< el-upload action = "#" list-type = "picture-card" :auto-upload = "false" >
< template #default >
< i class = "el-icon-plus" > < / i >
< / template >
< template #file ="{ file }" >
< div >
< img class = "el-upload-list__item-thumbnail" :src = "file.url" alt = "" / >
< span class = "el-upload-list__item-actions" >
< span
class="el-upload-list__item-preview"
@click ="handlePictureCardPreview(file)"
>
< i class = "el-icon-zoom-in" > < / i >
< / span >
< span
v-if="!disabled"
class="el-upload-list__item-delete"
@click ="handleDownload(file)"
>
< i class = "el-icon-download" > < / i >
2020-08-13 15:18:26 +08:00
< / span >
2021-09-04 19:29:28 +08:00
< span
v-if="!disabled"
class="el-upload-list__item-delete"
@click ="handleRemove(file)"
>
< i class = "el-icon-delete" > < / i >
< / span >
< / span >
< / div >
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
2020-12-12 00:23:46 +08:00
< el-dialog v-model = "dialogVisible" >
2021-09-04 19:29:28 +08:00
< img width = "100%" :src = "dialogImageUrl" alt = "" / >
2020-08-13 15:18:26 +08:00
< / el-dialog >
< script >
export default {
data() {
return {
dialogImageUrl: '',
dialogVisible: false,
2021-09-04 19:29:28 +08:00
disabled: false,
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file) {
2021-09-04 19:29:28 +08:00
console.log(file)
2020-08-13 15:18:26 +08:00
},
handlePictureCardPreview(file) {
2021-09-04 19:29:28 +08:00
this.dialogImageUrl = file.url
this.dialogVisible = true
2020-08-13 15:18:26 +08:00
},
handleDownload(file) {
2021-09-04 19:29:28 +08:00
console.log(file)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Lista de archivos con miniatura
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
2021-09-04 19:29:28 +08:00
list-type="picture"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
2020-11-20 23:29:50 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" >
Solo archivos jpg/png con un tamaño menor de 500kb
< / div >
2020-11-20 23:29:50 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2021-09-04 19:29:28 +08:00
fileList: [
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
{
name: 'food2.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2021-09-04 19:29:28 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePreview(file) {
2021-09-04 19:29:28 +08:00
console.log(file)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Control de lista de archivos
Utilice el _hook_ `on-change` para controlar la funcionalidad de la lista de archivos subidos.
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-change="handleChange"
2021-09-04 19:29:28 +08:00
:file-list="fileList"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Clic para subir archivo< / el-button >
2020-11-20 23:29:50 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" >
Solo archivos jpg/png con un tamaño menor de 500kb
< / div >
2020-11-20 23:29:50 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2021-09-04 19:29:28 +08:00
fileList: [
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
{
name: 'food2.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleChange(file, fileList) {
2021-09-04 19:29:28 +08:00
this.fileList = fileList.slice(-3)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Arrastrar para cargar archivo
Puede arrastrar el archivo dentro de un área en especifico para cargar el archivo.
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
drag
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
2021-09-04 19:29:28 +08:00
multiple
>
2020-08-13 15:18:26 +08:00
< i class = "el-icon-upload" > < / i >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__text" >
Suelta tu archivo aquí o < em > haz clic para cargar< / em >
< / div >
2020-11-20 23:29:50 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" >
Solo archivos jpg/png con un tamaño menor de 500kb
< / div >
2020-11-20 23:29:50 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Carga normal
:::demo
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
ref="upload"
action="https://jsonplaceholder.typicode.com/posts/"
2021-09-04 19:29:28 +08:00
:auto-upload="false"
>
2020-11-20 23:29:50 +08:00
< template #trigger >
< el-button size = "small" type = "primary" > Selecciona un archivo< / el-button >
< / template >
2021-09-04 19:29:28 +08:00
< el-button
style="margin-left: 10px;"
size="small"
type="success"
@click ="submitUpload"
>Cargar al servidor< /el-button
>
2020-11-20 23:29:50 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" >
Solo archivos jpg/png con un tamaño menor de 500kb
< / div >
2020-11-20 23:29:50 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
methods: {
submitUpload() {
2021-09-04 19:29:28 +08:00
this.$refs.upload.submit()
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
### Atributos
2021-09-04 19:29:28 +08:00
| Atributo | Descripción | Tipo | Valores aceptados | Por defecto |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ------------------------- | ----------- |
| action | obligatorio, URL de la petición | string | — | — |
| headers | cabeceras de la petición | object | — | — |
2021-09-12 19:51:21 +08:00
| method | establecer método de solicitud de carga | string | post/put | post |
2021-09-04 19:29:28 +08:00
| multiple | especifica si se permite subir múltiples archivos | boolean | — | — |
| data | opciones adicionales de la petición | object | — | — |
| name | nombre clave del archivo | string | — | file |
| with-credentials | especifica si enviará cookies | boolean | — | false |
| show-file-list | especifica si se debe mostrar la lista de archivos cargados | boolean | — | true |
| drag | se especifica si se activará el modo arrastrar y soltar | boolean | — | false |
| accept | acepta [tipos de archivos ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept ), puede no funcionar cuando `thumbnail-mode` esta en `true` | string | — | — |
| on-preview | _hook_ lanzado al hacer clic en los archivos subidos | function(file) | — | — |
| on-remove | _hook_ lanzado cuando los archivos son eliminados | function(file, fileList) | — | — |
| on-success | _hook_ lanzado cuando los archivos fueron cargados correctamente | function(response, file, fileList) | — | — |
| on-error | _hook_ lanzado cuando han ocurrido algunos errores | function(err, file, fileList) | — | — |
| on-progress | _hook_ lanzado cuando se produce algún progreso | function(event, file, fileList) | — | — |
| on-change | _hook_ lanzado cuando el archivo seleccionado se carga correctamente o falla | function(file, fileList) | — | — |
| before-upload | _hook_ lanzado antes de que el archivo sea cargado. Si este devuelve `true` o `Promise` entonces será rechazado, la carga puede ser cancelada | function(file) | — | — |
2020-08-13 15:18:26 +08:00
| before-remove | _hook_ lanzado antes de eliminar un archivo. Los parámetros son el archivo y la lista de archivos. Si se devuelve `false` o se devuelve una `Promise` y que luego es rechazada, la eliminación será abortada. | function(file, fileList) | — | — |
2021-09-04 19:29:28 +08:00
| thumbnail-mode | especifica si se mostrará la miniatura | boolean | — | false |
| file-list | archivos cargados por defecto, por ejemplo, [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}] | array | — | [] |
| list-type | tipo de lista de archivos | string | text/picture/picture-card | text |
| auto-upload | se especifica si se autocargan archivos | boolean | — | true |
| http-request | sobrescribe el comportamiento por defecto de xhr, permitiendo implementar tu propia petición de carga de archivos | function | — | — |
| disabled | especifica si se deshabilita la carga de archivos | boolean | — | false |
| limit | número máximo de cargas permitidas | number | — | — |
| on-exceed | _hook_ lanzado cuando el límite ha sido excedido | function(files, fileList) | — | - |
2020-08-13 15:18:26 +08:00
### Slot
2021-09-04 19:29:28 +08:00
| Nombre | Descripcion |
| ------- | ----------------------------------------------- |
2020-08-13 15:18:26 +08:00
| trigger | contenido que desencadena el diálogo de archivo |
2021-09-04 19:29:28 +08:00
| tip | contenido de los tips |
2020-08-13 15:18:26 +08:00
### Métodos
2021-09-04 19:29:28 +08:00
| Nombre del método | Descripción | Parametros |
| ----------------- | ------------------------------------------------------------------------------------------------- | --------------------------- |
| clearFiles | limpia la lista de archivos cargados (este método no esta soportado en el _hook_ `before-upload` ) | — |
| abort | cancela la petición de carga | ( file: fileList's item ) |
| submit | La lista de archivos se sube manualmente | — |