For some reason, in the following code, evt.target.result is empty. Why is that?

function drop(evt) {
    evt.stopPropagation();
    evt.preventDefault();

    var file = evt.dataTransfer.files[0];

    handleFiles(file, evt.target);
}

function handleFiles(file, target) {
    loadSongAnimate();

    var reader = new FileReader();

    // init the reader event handlers
    reader.onloadend = handleReaderLoadEnd;

    // begin the read operation
    reader.readAsDataURL(file);
}

function handleReaderLoadEnd(evt) {
    alert('Passing this: ' + evt.target.result);
    document.getElementById('audioTagId').src = evt.target.result;
}
link|improve this question

Thanks for the edit @Mortensen. I get the hint, and will follow it in future... :D – Crossdiver Jun 5 '11 at 0:57
feedback

2 Answers

From the fine manual:

onloadend
Called when the read is completed, whether successful or not. This is called after either onload or onerror.

I suspect that you have an error condition. Add an onerror callback and have a look at what reader.error has to say. You might want to use separate onerror, onabort, and onload callbacks instead of onloadend:

onabort
Called when the read operation is aborted.

onerror
Called when an error occurs.

onload
Called when the read operation is successfully completed.

That might make it easier to handle the individual events.


In your comment you say that you're getting an "error 2", from the other fine manual:

Constant: SECURITY_ERR
Value: 2
Description: The file could not be accessed for security reasons.

So it looks like you getting a "permission denied" error.

link|improve this answer
OK, I am getting an error code "2". This seems to be a generic catch-all error code, so I don't know how I can really troubleshoot it... any ideas on where to look from here? – Crossdiver Jun 5 '11 at 0:56
@Crossdiver: Looks like you're getting "permission denied" (essentially), I've added a little update to that effect (and added a link that I forgot before). – mu is too short Jun 5 '11 at 3:38
1  
@Crossdiver Thanks for the helpful debugging info. For the record, I was repeatedly getting SECURITY_ERR because I was viewing my html locally over file:// and not over http. Lesson learned! – Darragh Jul 7 '11 at 22:32
Yes, that was my problem in the end as well... just because I was viewing the file locally, I would get this Security Error #2. Good to know!! – Crossdiver Jul 11 '11 at 21:40
feedback
up vote 2 down vote accepted

The problem was that I was editing and viewing the file over a local file:// protocol. The problem with this is that when you are accessing a local file from another local file, the security checks will block it because of the blank headers of the local file.

Lesson learned... always upload to a server for testing as well. Would have saved me hours of Googling, and lots of hair.

link|improve this answer
I didn't even think of that, I always run things through a server to avoid problems with stylesheet and script URLs. – mu is too short Jul 11 '11 at 22:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.