中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何将ArrayBuffer转成string,String.fromCharCode.apply(null, new Uint8Array(arrayBuffer))方法并不可行,会报错
微信扫码分享
const decoder = util.TextDecoder.create(’“utf-8”’);const str = decoder.decodeWithStream(new Uint8Array(arrayBuffer));