转至:http://www.bcty365.com/content-69-6242-1.html
感谢大神!!!
之前在做图片或者图片上传的时候都要先将图片或视频上传之后拿到文件的网络地址才能在标签上显示。
现在可以通过window的createObjectURL这个api拿到本地地址
//拿到input选择文件的本地地址 getFileURL(file) { var getUrl = null; if (window.createObjectURL != undefined) { // basic getUrl = window.createObjectURL(file); } else if (window.URL != undefined) { // mozilla(firefox) getUrl = window.URL.createObjectURL(file); } else if (window.webkitURL != undefined) { // webkit or chrome getUrl = window.webkitURL.createObjectURL(file); } return getUrl; }
然后将地址赋值给img和video标签