Re: XMLHttpRequest.responseBlob

On Mon, Apr 26, 2010 at 3:29 PM, Jonas Sicking <jonas@sicking.cc> wrote:

> On Mon, Apr 26, 2010 at 3:21 PM, Darin Fisher <darin@chromium.org> wrote:
> > There is some interest from application developers at Google in being
> able
> > to get a Blob corresponding to the response body of a XMLHttpRequest.
> > The use case is to improve the efficiency of getting a Blob from a binary
> > resource downloaded via XHR.
> > The alternative is to play games with character encodings so that
> > responseText can be used to fetch an image as a string, and then use
> > BlobBuilder to reconstruct the image file, again being careful with the
> > implicit character conversions.  All of this is very inefficient.
> > Is there any appetite for adding a responseBlob getter on XHR?
>
> There has been talk about exposing a responseBody property which would
> contain the binary response. However ECMAScript is still lacking a
> binary type.
>
> Blob does fit the bill in that it represents binary data, however it's
> asynchronous nature is probably not ideal here, right?
>
> / Jonas
>


I think there are applications that do not require direct access to the
response data.

For example,

1- Download a binary resource (e.g., an image) via XHR.
2- Load the resource using Blob.URN (assuming URN moves from File to Blob).

It may be the case that providing direct access to the response data may be
more
expensive than just providing the application with a handle to the data.
 Consider
the case of large files.

-Darin

Received on Monday, 26 April 2010 22:40:21 UTC