当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Uint8Array.from()用法及代码示例


Uint8Array数组表示8位无符号整数的数组。默认情况下,Uint8Array的内容初始化为0。

Uint8Array.from()方法用于从array-like或可迭代对象创建新的Uint8Array。因此,当您要转换arrayLike或可迭代对象时,可以通过将对象作为参数以及映射函数和用于映射函数的值(作为参数)传递给此函数来使用此函数。

用法:


Uint8Array.from( source, mapFn, thisArg )

参数:此方法接受上述和以下所述的三个参数:

  • source:此参数包含array-like或可迭代对象,该对象用于转换为Uint8Array对象。
  • mapFn:这是一个可选参数,它是Map函数,用于调用Uint8Array数组的每个元素。
  • thisArg:它是一个可选参数,存储执行mapFn时用作此值的值。

返回值:此方法返回一个新的Uint8Array实例。

以下示例说明了JavaScript中Uint8Array.from()方法的用法方式:

程序1:

<script> 
  
// Create a Uint8Array from a string like structure 
var  array = Uint8Array.from('45465768654323456'); 
  
// Print the result 
document.write(array); 
</script>
输出:
4, 5, 4, 6, 5, 7, 6, 8, 6, 5, 4, 3, 2, 3, 4, 5, 6

程序2:

<script> 
  
// Create a Uint8Array from a array by adding 
// 3 to each number using function 
var  array = Uint8Array.from([1, 2, 3, 4, 5, 6], z => z+3); 
  
// Print the result 
document.write(array); 
</script>
输出:
4, 5, 6, 7, 8, 9

参考文献: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 JavaScript | Uint8Array.from() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。