开发者

Converting a BlobBuilder to string, in HTML5 Javascript

          function blobToString(blob) {
             var reader = new FileReader();
             var d = "";
             reader.onloadend = function() {
                 d.callback(reader.result); 
                 console.log(reader.result);
             };
             reader.readAsText(blob);  
             return d;
         };

The above code does not work, but I guess my intentions are clear, I want to convert som开发者_StackOverflowe binary data(WebKitBlobBuilder) to a string. Also the "console.log(reader.result);" doesn't display anything.


Check out http://blog.ericzhang.com/state-of-binary-in-the-browser/ and his binary.js project.


it should not be reader.onloadend but rather reader.onloaded

or try

reader.onload = function (e) {
e.target.result -> this is the data. 
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜