所以我正在编写一个返回文件部分的函数。当我使用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
}
}