两种图像预览方式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>文件上传</title>
</head>
<body>
<div id="app">
<img :src="ImgUpload" alt="" ref="image" height="100px" width="100px"/>
<input type="file" @change="Upload">
<img :src="ImgUpload2" alt="" ref="image" height="100px" width="100px"/>
<input type="file" @change="Upload2">
</div>
<script src="./myjs/vue.js"></script>
<script src="./myjs/axios.min.js"></script>
<script>
let vue = new Vue({
el: '#app',
data: {
ImgUpload: '',
ImgUpload2: ''
},
methods: {
Upload(e) {
//通过base64预览
let file = e.target.files[0]
let fileReader = new FileReader();
//读取文件,是一个异步操作
fileReader.readAsDataURL(file)
//回调函数,表示已经读后
fileReader.onloadend = function (e) {
let base64 = e.target.result;
//此方案可以动态设置src属性
this.ImgUpload = base64;
//此方案可以动态设置src属性
//this.$refs.image.src=base64;
}.bind(this)
},
Upload2(e) {
//第二种预览方式
let file = e.target.files[0]
let s = URL.createObjectURL(file);
this.ImgUpload2 = s;
}
}
})
</script>
</body>
</html>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/192921.html