美文网首页
本地预览图片

本地预览图片

作者: 月落乌啼霜满天_1f0f | 来源:发表于2019-11-12 16:38 被阅读0次
image.png

以下函数绑在input标签的change事件上
preview(e) {
let that = this;
let file = e.target.files[0];
that.$emit("imgFile", file);//传给父组件的file对象,上传到服务器

            let reader = new FileReader();
            reader.readAsDataURL(file);
            reader.onloadend = function () {
                that.imgUrls.push(reader.result);//reader.result为img标签src可读取的结果
            };
        },

相关文章

网友评论

      本文标题:本地预览图片

      本文链接:https://www.haomeiwen.com/subject/twsqictx.html