JS函数返回null - help

时间:2011-07-09 04:16:56

标签: javascript fileapi

我正在尝试修改示例http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-reading-files以使函数handleFileSelect(evt)返回reader.result;我的意思是使函数返回base64 for image左右。 我试着用函数写它但它只返回null :( 所以我的问题是如何让函数返回base64?

至于现在我试着写这个片段......

function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object

    // Loop through the FileList and render image files as thumbnails.
    for (var i = 0, f; f = files[i]; i++) {

      // Only process image files.
      if (!f.type.match('image.*')) {
        continue;
      }

      var reader = new FileReader();

      // Closure to capture the file information.
      reader.onload = (function(theFile) {
        return function(e) {
          // Render thumbnail.
          var span = document.createElement('span');
          span.innerHTML = ['<img class="thumb" src="', e.target.result,
                            '" title="', theFile.name, '"/>'].join('');
          document.getElementById('list').insertBefore(span, null);
        };
      })(f);

      // Read in the image file as a data URL.
      reader.readAsDataURL(f);
    }
    return reader.result;
  }

赞赏所有有用的评论:)

1 个答案:

答案 0 :(得分:2)

我不太详细了解FileReader对象,但看起来它是异步读取URL中的数据。这意味着当您的函数返回reader.result时,FileReader对象尚未完成读取文件。在调用onload回调(或发生其他错误情况)之前,这不会完成。

因此,当读取仍然异步发生时,函数会返回。因此,结果尚未确定。结果将在onload回调或(我猜),在其他回调中可用,表示错误条件(onabort,onerror等)。