Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Blob()

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

El constructor Blob() retorna un nuevo objeto Blob . El contenido del blob consiste en la concatenación de los valores obtenidos en el parrametro array.

Syntax

var aBlob = new Blob( array, options );

Parametros

  • array es un Array de ArrayBuffer, ArrayBufferView, Blob, DOMString objetos, o una mezcla de cualquiera de los cuales son objetos, that will be put inside the Blob.
  • options is an optional BlobPropertyBag dictionary which may specify the following two attributes:
    • type, with a default value of "", that represents the MIME type of the content of the array that will be put in the blob.
    • endings, with a default value of "transparent", that specifies how strings containing the line ending character \n are to be written out. It is one of the two values: "native", meaning that line ending characters are changed to match host OS filesystem convention, or "transparent", meaning that endings are stored in the blob without change.

Example

var aFileParts = ['<a id="a"><b id="b">hey!</b></a>']; // an array consisting of a single DOMString
var oMyBlob = new Blob(aFileParts, {type : 'text/html'}); // the blob

Specification

Specification Status Comment
File API
The definition of 'Blob()' in that specification.
Working Draft Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 20 13.0 (13.0) [1] 10 12.10 8
in Workers ? 14.0 (14.0) ? ? ?
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 13.0 (13.0) [1] Not supported ? ?
in Workers ? 14.0 (14.0) Not supported ? ?

[1] Before Firefox 16, the second parameter, when set to null or undefined, leads to an error instead of being handled as an empty dictionary.

See also

  • The deprecated BlobBuilder which this constructor replaces.

 

Etiquetas y colaboradores del documento

 Colaboradores en esta página: fscholz, matajm
 Última actualización por: matajm,