读取文件功能无法返回结果

时间:2018-06-11 01:44:36

标签: javascript

所以我正在编写一个返回文件部分的函数。当我使用console.log()时,它会相应地显示内容。但它没有使用return语句。为什么?以及如何正确返回内容?



var frd = new FileReader();
    blob = file.slice(start, stop);//users upload the file and determine where to start and stop
    frd.onloadend = function(e) {
        if (e.target.readyState == FileReader.DONE) {
            console.log(e.target.result);//display the content 
            return e.target.result;// nothing returned
        }
    }




0 个答案:

没有答案