Underscore.js 是一个 JavaScript 库,即使不使用任何内置对象,它也提供了许多有用的函数,如映射、过滤器、调用等。
_.unzip()函数用于将不同数组的相同类型的元素组合成一个数组。它将每个传递的数组元素与下一个传递的数组元素一一匹配。当多个同质数组(一种类型的元素,例如数字、作品、特殊字符等)时,使用它通过将每个元素与下一个数组中的相应元素匹配来连接所有数组。它可以有多个数组作为其参数。结果将包含与最大数组的元素数量相同的数组。它与 _.zip() 函数相反。
用法:
_.unzip( *arrays )
参数:该函数接受单个参数array它用于保存数组元素。
返回值:它返回结果数组。
将同构数组传递给 _.unzip() 函数:._unzip() 函数接受第一个数组中的元素,并生成结果数组的第一个元素。然后,它从第二个数组中获取元素并将其仅映射为第一个元素的第二个属性。这样做直到覆盖所有数组的第一个元素。然后它形成结果数组的第二个元素。这一直持续到所有元素都被覆盖为止。
例子:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.unzip([['Akash', 'Amit', 'Aviral'],
[01, 02, 03],
['pass', 'pass', 'fail']])
);
</script>
</body>
</html>
输出:
将异构数组传递给 _.unzip() 函数:传递异构数组,即在单个数组中包含所有类型的元素。 _.unzip() 函数的工作方式相同。过程是相同的,但输出会有所不同。现在它将在结果中形成同构数组。
例子:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.unzip([['Akash', 02, 'pass'],
['Amit', 02, 'pass'],
['Aviral', 03, 'fail']])
);
</script>
</body>
</html>
输出:
在 _.unzip() 函数中映射不同类型的元素 将不同类型的元素传递给 _.unzip 函数。这次过程也将是相同的,但结果不会是同构数组,而是异构数组,作为第一个数组的第一个元素传递的字符串,但作为第一个元素传递的特殊字符字符串第二个数组的元素。
例子:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.unzip([['Akash', 01, 5999],
['*', 02, 'pass'],
['!', '@', 3222]])
);
</script>
</body>
</html>
输出:
将不等大小的数组传递给 _.unzip() 函数:可以传递不等大小的数组,但这会导致结果数组中出现未定义的值。这是因为在其余数组中找到匹配项的元素数量将被视为单个数组,但如果它们没有找到任何匹配项,那么它们将具有‘undefined’。但这会顺利进行并且不会出现任何错误。
例子:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.unzip([['Akash', 01, 5999],
['*', 02, 'pass'],
['!', '@', 3222],
['?', '>', '<', ';']])
);
</script>
</body>
</html>
输出:
注意:这些命令在 Google 控制台或 Firefox 中不起作用,因为需要添加这些他们没有添加的附加文件。因此,将给定的链接添加到您的 HTML 文件中,然后运行它们。
<script type="text/javascript" src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
相关用法
- underscore.js _.unzip()用法及代码示例
- underscore.js _.union()用法及代码示例
- underscore.js _.uniq()用法及代码示例
- underscore.js _.unescape()用法及代码示例
- underscore.js _.unsplat()用法及代码示例
- underscore.js _.unsplatl()用法及代码示例
- underscore.js _.unary()用法及代码示例
- underscore.js _.uniqueId()用法及代码示例
- underscore.js _.delay()用法及代码示例
- underscore.js _.difference()用法及代码示例
- underscore.js _.flatten()用法及代码示例
- underscore.js _.initial()用法及代码示例
- underscore.js _.zip()用法及代码示例
- underscore.js _.wrap()用法及代码示例
- underscore.js _.without()用法及代码示例
- underscore.js _.last()用法及代码示例
- underscore.js _.isRegExp()用法及代码示例
- underscore.js _.size()用法及代码示例
- underscore.js _.isFinite()用法及代码示例
- underscore.js _.intersection()用法及代码示例
- underscore.js _.isNaN()用法及代码示例
- underscore.js _.isUndefined()用法及代码示例
- underscore.js _.rest()用法及代码示例
- underscore.js _.filter()用法及代码示例
- underscore.js _.compact()用法及代码示例
注:本文由纯净天空筛选整理自Sakshi98大神的英文原创作品 Underscore.js _.unzip() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。