Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't get file contents #45

Open
linusx opened this issue Jun 27, 2013 · 6 comments
Open

Can't get file contents #45

linusx opened this issue Jun 27, 2013 · 6 comments

Comments

@linusx
Copy link

linusx commented Jun 27, 2013

I am having an issue with trying to get the FileReader working properly. I have some code that is kinda working, and by that I mean when I log the file in FireFox it works somewhat. It shows me the file information but not the data in the file.

Also debugMode set to true doesn't do anything for me. It doesn't show me any debug information. Below is some test code I'm using. Please let me know if my example is wrong. In IE9 it just gives me errors that the target.files isn't populated at all. From some of the research I've done in the issues section here it refers to something called: FileAPIProxy? But when I try to follow that It is undefined.

$("#fileToUpload").fileReader({
filereader: '/js/filereader/filereader.swf',
debugMode: true
});

$("#fileToUpload").on("change", function (e) {
console.log( e.target.files );
var file = e.target.files[0];
var fileReader = new FileReader();

console.log( file );
var d = fileReader.readAsDataURL( file );
console.info( d );

});

@linusx
Copy link
Author

linusx commented Jun 27, 2013

Also e.target.files is not an object in IE9. How would I get the file in IE9?

@keowling
Copy link

Linusx, I have the same issue. Did you find the solution?

@russgove
Copy link

I am having this issue in IE9 as well......

@linusx
Copy link
Author

linusx commented Jul 23, 2013

Here is how I got it to work. This is currently working on IE9 and Safari 5. Hope it helps.

/***************************************************************************************/
reader = new FileReader();

// Hack for IE. IE9 doesn't have filereader or the properties
// Supposed to be included but it doesn't seem to work.
if (is_ie) {
reader.DONE = 2;
}

reader.onload = function (e) { file_loaded(e, 'onload'); };
reader.onloadend = function (e) { file_loaded(e, 'onloadend'); };
reader.readAsText(file);

function file_loaded(e, type) {
if (e.target.readyState === reader.DONE) {
xml = e.target.result;
upload_xml(xml);
}
}

@keowling
Copy link

Linusx, Thank you for sharing.

By the way, how do we get the "file" in the following line?
reader.readAsText(file);

In IE 9, I did try to get the file from e.target.files, but it complains that e.target.files is not an object in IE9.

Thanks for you help in advanced

@javamate
Copy link

If you get e.target.files is not an object, it likely means that the path to the filereader (as specified in the init method of fileReader) is not correct. I was having this problem as well and when I fixed that path it started working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants