BlobBuilder - Web APIs 编辑
Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The BlobBuilder
interface provides an easy way to construct Blob
objects. Just create a BlobBuilder
and append chunks of data to it by calling the append()
method. When you're done building your blob, call getBlob()
to retrieve a Blob
containing the data you sent into the blob builder.
BlobBuilder
interface has been deprecated in favor of the newly introduced Blob
constructor.Method overview
void append(in ArrayBuffer data); |
void append(in Blob data); |
void append(in String data, [optional] in String endings); |
Blob getBlob([optional] in DOMString contentType); |
File getFile(in DOMString name, [optional] in DOMString contentType); |
Methods
append()
Appends the contents of the specified JavaScript object to the Blob
being built. If the value you specify isn't a Blob
, ArrayBuffer
, or String
, the value is coerced to a string before being appended to the blob.
void append( in ArrayBuffer data ); void append( in Blob data ); void append( in String data, [optional] in String endings );
Parameters
data
- The data to append to the
Blob
being constructed. endings
- Specifies how strings containing
\n
are to be written out. This can be"transparent"
(endings unchanged) or"native"
(endings changed to match host OS filesystem convention). The default value is"transparent"
.
getBlob()
Returns the Blob
object that has been constructed using the data passed through calls to append()
.
Blob getBlob( in DOMString contentType Optional );
Parameters
contentType
Optional- The MIME type of the data to be returned in the
Blob
. This will be the value of theBlob
object's type property.
Return value
A Blob
object containing all of the data passed to any calls to append()
made since the BlobBuilder
was created. This also resets the BlobBuilder
so that the next call to append()
is starting a new, empty blob.
getFile() This API has not been standardized.
Returns a File
object.
File getFile( in DOMString name, [optional] in DOMString contentType );
Parameters
name
- The file name.
contentType
Optional- The MIME type of the data to be returned in the
File
. This will be the value of theFile
object's type property.
Return value
A File
object.
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论