gpt4 book ai didi

javascript - 无法获取 Uint8Array 字节

转载 作者:行者123 更新时间:2023-12-02 08:05:12 25 4
gpt4 key购买 nike

我创建了一个数组缓冲区
var uni = new Uint8Array([255, 216, 255, 0, 0, 0, 0, 0])
但是当我尝试使用 map 取回字节时
uni.map(byte => byte.toString(16))
它返回
Uint8Array(8) [0, 0, 0, 0, 0, 0, 0, 0]

最佳答案

您必须首先将 TypedArray 转换为 Array:Array.prototype.slice.call(uni).map(byte=>byte.toString(16))

关于javascript - 无法获取 Uint8Array 字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52378917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com