ArrayBuffer和Uinit8Array值(类型化数组值)

时间:2015-03-04 08:20:16

标签: javascript html encryption

如何打印[object ArrayBuffer]和[object Uint8Array]的值。

我有一个变量,我在打印时给了我上面的对象,但我无法检索它们的值。

encryptedBytes = toSupportedArray(e.target.result);

其中,

console.log("to send for encryption - e.target.result : "+e.target.result);

给我结果:

发送加密 - e.target.result:[object ArrayBuffer]

console.log("encryptedBytes : "+encryptedBytes);

给我结果:

encryptedBytes:[object Uint8Array]

但我如何检索相同的值。

0 个答案:

没有答案