如何打印[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]
但我如何检索相同的值。