sendBlob 方法

  1. @JSName('send')
void sendBlob(
  1. Blob data
)

通过此连接将数据传输到服务器。

此方法接受类型为 BlobByteBufferStringTypedData 的数据。与此相对的是,具有指定类型的命名变体sendBlobsendByteBuffersendStringsendTypedData,只接受指定类型的数据。

实现

@JSName('send')
/**
 * Transmit data to the server over this connection.
 *
 * This method accepts data of type [Blob], [ByteBuffer], [String], or
 * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendString],
 * or [sendTypedData], in contrast, only accept data of the specified type.
 */
void sendBlob(Blob data) native;