Convert Uint8Array to Array in Javascript

后端 未结 2 591
[愿得一人]
[愿得一人] 2021-02-01 15:10

I have Uint8Array instance that contains binary data of some file.
I want to send data to the server, where it will be deserialized as byte[].
But if I send Uint8Array,

2条回答
  •  余生分开走
    2021-02-01 15:29

    There is a method of Uint8Array using the prototype (but it only supported by Firefox and Chrome):

    TypedArray.prototype.entries() --> it returns a array.

    Check it out: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries

提交回复
热议问题