标签: javascript url serialization
我需要将Uint16Array序列化为与URL兼容的字符串,但是当我使用以下命令将缓冲区转换为字符串时:
Uint16Array
const str String.fromCharCode(...buffer)
然后,这给出了错误:
encodeURIComponent(str)
URI错误:URI格式错误
我使用encodeURIComponent()来将序列化的数据放入查询字符串中。
encodeURIComponent()
有没有办法使它工作,或者有另一种方法来序列化URL查询字符串中的Uint16Array?
谢谢!