将Uint16Array序列化为URL兼容的字符串

时间:2019-03-01 22:12:35

标签: javascript url serialization

我需要将Uint16Array序列化为与URL兼容的字符串,但是当我使用以下命令将缓冲区转换为字符串时:

const str String.fromCharCode(...buffer)

然后,这给出了错误:

encodeURIComponent(str)

URI错误:URI格式错误

我使用encodeURIComponent()来将序列化的数据放入查询字符串中。

有没有办法使它工作,或者有另一种方法来序列化URL查询字符串中的Uint16Array

谢谢!

0 个答案:

没有答案