Vue上传图片预览组件

  父组件:

<template>
    <div>
        <h4>基于Vue.2X的html5上传图片组件</h4>
        <div style="width: 502px;">
            <uploader :src="'/api/imgsupload'"></uploader>
        </div>
    </div>
</template>
<script>
    import uploader from './uploader.vue'
    export default {
        data() {
            return {}
        },
        components: {
            uploader
        }
    }
</script>

  子组件:

<template>
    <div class="vue-uploader">
        <div class="file-list">
            <section v-for="(file, index) of files" class="file-item draggable-item">
                <img :src="file.src" alt="" ondragstart="return false;">
                <p class="file-name">{{file.name}}</p>
                <span class="file-remove" @click="remove(index)">+</span>
            </section>
            <section v-if="status == 'ready'" class="file-item">
                <div @click="add" class="add">
                    <span>+</span>
                </div>
            </section>
        </div>

        <section v-if="files.length != 0" class="upload-func">
            <div class="progress-bar">
                <section v-if="uploading" :width="(percent * 100) + '%'">{{(percent * 100) + '%'}}</section>
            </div>
            <div class="operation-box">
                <button v-if="status == 'ready'" @click="submit">上传</button>
                <button v-if="status == 'finished'" @click="finished">完成</button>
            </div>
        </section>
        <input type="file" accept="image/*" @change="fileChanged" ref="file" multiple="multiple">
    </div>
</template>
<script>
    export default {
        props: {
            src: {
                type: String,
                required: true
            }
        },
        data() {
            return {
                status: 'ready',
                files: [],
                uploading: false,
                percent: 0
            }
        },
        methods: {
            add() {
                this.$refs.file.click()//调用file的click事件
            },
            submit() {
                if (this.files.length === 0) {
                    console.warn('no file!');
                    return
                }
                //当点击上传按钮时,将会遍历所有选中的文件,并添加到自定义的FormData中
                const formData = new FormData()
                this.files.forEach((item) => {
                    formData.append(item.name, item.file)
                })
                const xhr = new XMLHttpRequest()
                xhr.upload.addEventListener('progress', this.uploadProgress, false)
                xhr.open('POST', this.src, true)
                this.uploading = true
                xhr.send(formData)
                xhr.onload = () => {
                    this.uploading = false
                    if (xhr.status === 200 || xhr.status === 304) {
                        this.status = 'finished'
                        console.log('upload success!')
                    } else {
                        console.log(`error:error code ${xhr.status}`)
                    }
                }
            },
            finished() {
                this.files = []
                this.status = 'ready'
            },
            remove(index) {
                this.files.splice(index, 1)
            },
            fileChanged() {
                const list = this.$refs.file.files
                for (let i = 0; i < list.length; i++) {
                    if (!this.isContain(list[i])) {
                        const item = {
                            name: list[i].name,
                            size: list[i].size,
                            file: list[i]
                        }
                        this.html5Reader(list[i], item)
                        this.files.push(item)
                    }
                }
                this.$refs.file.value = ''
            },
            // 将图片文件转成BASE64格式
            html5Reader(file, item){
                const reader = new FileReader()
                reader.onload = (e) => {
                    this.$set(item, 'src', e.target.result)
                }
                reader.readAsDataURL(file)
            },
            isContain(file) {
              return this.files.find((item) => item.name === file.name && item.size === file.size)
            },
            uploadProgress(evt) {
                const component = this
                if (evt.lengthComputable) {
                    const percentComplete = Math.round((evt.loaded * 100) / evt.total)
                    component.percent = percentComplete / 100
                } else {
                    console.warn('upload progress unable to compute')
                }
            }
        }
    }
</script>
<style>
.vue-uploader {
    border: 1px solid #e5e5e5;
}
.vue-uploader .file-list {
    padding: 10px 0px;
}
.vue-uploader .file-list:after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size: 0;
}
.vue-uploader .file-list .file-item {
    float: left;
    position: relative;
    width: 100px;
    text-align: center;
}
.vue-uploader .file-list .file-item img{
    width: 80px;
    height: 80px;
    border: 1px solid #ececec;
}
.vue-uploader .file-list .file-item .file-remove {
    position: absolute;
    right: 12px;
    display: none;
    top: 4px;
    width: 14px;
    height: 14px;
    color: white;
    cursor: pointer;
    line-height: 12px;
    border-radius: 100%;
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.5);
}
.vue-uploader .file-list .file-item:hover .file-remove {
    display: inline;
}
.vue-uploader .file-list .file-item .file-name {
    margin: 0;
    height: 40px;
    word-break: break-all;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.vue-uploader .add {
    width: 80px;
    height: 80px;
    margin-left: 10px;
    float: left;
    text-align: center;
    line-height: 80px;
    border: 1px dashed #ececec;
    font-size: 30px;
    cursor: pointer;
}
.vue-uploader .upload-func {
    display: flex;
    padding: 10px;
    margin: 0px;
    background: #f8f8f8;
    border-top: 1px solid #ececec;
}
.vue-uploader .upload-func .progress-bar {
    flex-grow: 1;
}
.vue-uploader .upload-func .progress-bar section {
    margin-top: 5px;
    background: #00b4aa;
    border-radius: 3px;
    text-align: center; 
    color: #fff;
    font-size: 12px;
    transition: all .5s ease;
}
.vue-uploader .upload-func .operation-box {
    flex-grow: 0;
    padding-left: 10px;
}
.vue-uploader .upload-func .operation-box button {
    padding: 4px 12px;
    color: #fff;
    background: #007ACC;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.vue-uploader > input[type="file"] {
    display: none;
}
</style>

  效果:

转载于:https://www.cnblogs.com/goloving/p/9236421.html

Vue.js 中上传图片通常会使用内置的 `vue-file-upload` 或者 `element-ui`、`iview` 等前端 UI 框架提供的文件上传组件。这里简单介绍一种基本的方法: **使用 Vue-File-Upload 组件**: 首先,你需要安装这个插件,通过 npm 安装: ```bash npm install vue-file-upload axios ``` 然后在组件中导入并使用它: ```html <template> <div> <input type="file" @change="handleImageChange" /> <button @click="uploadImage">上传</button> <p v-if="imageUrl">{{ imageUrl }}</p> <!-- 显示已选图片预览 --> </div> </template> <script> import Vue from 'vue'; import FileUploader from 'vue-file-upload'; export default { components: { FileUploader, }, data() { return { imageUrl: '', }; }, methods: { handleImageChange(e) { this.$refs.uploader.addFiles(e.target.files); }, uploadImage() { this.$refs.uploader.submit({ url: '/api/upload', // 替换为你的实际上传API地址 method: 'POST', onProgress: (progressEvent) => { console.log(`上传进度: ${Math.round(progressEvent.loaded * 100 / progressEvent.total)}%`); }, onSuccess(response) { if (response.data && response.data.url) { this.imageUrl = response.data.url; } }, onError(error) { console.error('上传错误:', error); }, }); }, }, }; </script> ``` 在这个例子中,用户选择文件后,会触发 `handleImageChange` 方法添加到上传队列,点击“上传”按钮则会发起请求。 **使用 Element-UI 的 el-upload 组件**: Element UI 提供了更丰富的表单组件,你可以这样使用: ```html <template> <el-upload ref="upload" :action="uploadUrl" :on-change="handleChange" :before-upload="beforeUpload" :on-success="handleSuccess" :on-error="handleError" > <i class="el-icon-plus"></i> <div slot="tip">点击上传图片</div> </el-upload> <img :src="imageUrl" v-if="imageUrl" alt="图片预览"> </template> <script> import { ref } from 'vue'; import { ElUpload } from 'element-plus'; export default { components: { ElUpload, }, setup(props) { const uploadUrl = props.uploadUrl || '/api/upload'; // 设置上传URL const imageUrl = ref(''); const handleChange = ({ file }) => { this.imageUrl = URL.createObjectURL(file); }; const beforeUpload = (file) => { // 这里可以做些验证或者处理,例如限制文件类型、大小等 }; const handleSuccess = (res, file) => { if (res.data && res.data.url) { this.imageUrl = res.data.url; } }; const handleError = (error, file) => { console.error('上传失败:', error); }; return { imageUrl, uploadUrl, handleChange, beforeUpload, handleSuccess, handleError }; }, }; </script> ``` 以上就是使用 Vue 上传图片的基本组件示例,具体的样式和配置可能会根据实际需求有所不同。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值