vue中input框的fileREader技术上传图片
2021-01-28 20:16
标签:vue res ali line height nload ret get 覆盖 1.在前端中使用input框,type=”file“来实现选择文件夹的功能 在表单中的input框中的添加按钮 2.input中type="type"的样式很难调整,可以采用重写样式覆盖,让input的opacity:0 3.在js中写入fileReader vue中input框的fileREader技术上传图片 标签:vue res ali line height nload ret get 覆盖 原文地址:https://www.cnblogs.com/xiaoyiyiaixuexi/p/13207206.html.file {
position: absolute;
width: 6%;
padding: 4%;
right: 0;
top: 0;
opacity: 0;
}
.replace {
position: absolute;
right: 0;
top: 0;
width: 7.5%;
padding: 3.7%;
text-align: center;
font-size: 13px;
line-height: 5px;
border: 1px solid #ooo;
}
getImages(e) {
let _this = this;
_this.form1.picture = e.target.files[0].name;
console.log(e.target.files);
if (!e || !window.FileReader) return; // 看支持不支持FileReader
let reader = new FileReader();
reader.readAsDataURL(e.target.files[0]);
reader.onloadend = function(){
_this.src1 = this.result;
};
},
文章标题:vue中input框的fileREader技术上传图片
文章链接:http://soscw.com/index.php/essay/48389.html