代表位元組陣列的不可變物件。
簽名:
export declare class Bytes
方法
方法 | 修飾符 | 說明 |
---|---|---|
fromBase64String(base64) | static |
從指定的 Base64 字串建立新的 Bytes 物件,並將其轉換為位元組。 |
fromUint8Array(陣列) | static |
使用指定的 Uint8Array 建立新的 Bytes 物件。 |
isEqual(其他) | 如果這個 Bytes 物件與指定物件相同,則傳回 true。 |
|
toBase64() | 以 Base64 編碼字串的形式傳回基礎位元組。 | |
toString() | 傳回 Bytes 物件的字串表示法。 |
|
toUint8Array() | 傳回新 Uint8Array 中的基礎位元組。 |
Bytes.fromBase64String()
從指定的 Base64 字串建立新的 Bytes
物件,並將其轉換為位元組。
簽名:
static fromBase64String(base64: string): Bytes;
參數
參數 | 類型 | 說明 |
---|---|---|
base64 | 字串 | 用來建立 Bytes 物件的 Base64 字串。 |
傳回:
Bytes.fromUint8Array()
使用指定的 Uint8Array 建立新的 Bytes
物件。
簽名:
static fromUint8Array(array: Uint8Array): Bytes;
參數
參數 | 類型 | 說明 |
---|---|---|
陣列 | Uint8Array | 用來建立 Bytes 物件的 Uint8Array。 |
傳回:
Bytes.isEqual()
如果這個 Bytes
物件與指定物件相同,則傳回 true。
簽名:
isEqual(other: Bytes): boolean;
參數
參數 | 類型 | 說明 |
---|---|---|
其他 | 位元組 | 要比較的 Bytes 物件。 |
傳回:
布林值
如果這個 Bytes
物件等於提供物件,則傳回 true。
Bytes.toBase64()
以 Base64 編碼字串的形式傳回基礎位元組。
簽名:
toBase64(): string;
傳回:
字串
從 Bytes
物件建立的 Base64 編碼字串。
位元組.toString()
傳回 Bytes
物件的字串表示法。
簽名:
toString(): string;
傳回:
字串
Bytes
物件的字串表示法。
Bytes.toUint8Array()
傳回新 Uint8Array
中的基礎位元組。
簽名:
toUint8Array(): Uint8Array;
傳回:
Uint8Array
透過 Bytes
物件建立的 Uint8Array。