解码Uint8Array类型的缓冲区数组时出现意外输出

时间:2017-09-13 07:42:02

标签: javascript node.js buffer

以下javascript代码尝试解码 Uint8Array 类型的缓冲区数组。但是,为数组的第一项检索的值是0而不是10。

    console.log(registers)
    // Prints [ <Buffer 00 0a>, <Buffer 00 00> ]

    var uint8 = new Uint8Array(registers);
    console.log(uint8);
    // Prints Uint8Array { '0': 0, '1': 0 }

    The expected output : Uint8Array { '0': 10, '1': 0 }

0 个答案:

没有答案