项目是在vue.js环境下
1 回答
胡子哥哥
TA贡献1825条经验 获得超6个赞
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function (e) {
$('#imgLogoImg').attr('src', this.result);
base64img = this.result;
//alert(this.result); //就是base64
}
添加回答
举报
0/150
提交
取消