file 获取本地文件路径(图片)

 代码直接用就可以了,当然请注意浏览器版本

//传入file文件
getObjectURL(file) {
            let url = null;
            if (window.createObjcectURL != undefined) {
            url = window.createOjcectURL(file);
            }else if (window.URL != undefined) {
            url = window.URL.createObjectURL(file);
            } else if (window.webkitURL != undefined) {
            url = window.webkitURL.createObjectURL(file);
            }
            return url;
        }

 

你可能感兴趣的:(file 获取本地文件路径(图片))