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


Collect.js dump()用法及代码示例


collect.js中的dump()方法用于在特定时刻打印数据,然后继续执行代码。

用法:

collect.dump()

参数:它不接受任何参数。

返回值:它不返回任何值。

范例1:



Javascript

// Importing the collect.js module 
const collect = require('collect.js');  
let array = ["a", "b", "c"]; 
  
// Making the collection 
let collection= collect(array); 
  
// Using dump() method to print 
// the data at this moment 
collection.dump()

输出:

Collection { items:[ 'a', 'b', 'c' ] }

范例2:

Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
  
let array = ["a", "b", "c", "d", "e"]; 
  
// Making the collection 
let collection = collect(array); 
  
// Using dump() method to print 
// the data at this moment 
collection.dump() 
    .filter((v, k) => v >= "c") 
    .dump()

输出:

Collection { items:[ 'a', 'b', 'c', 'd', 'e' ] }
Collection  { items:[ 'c', 'd', 'e' ] }

参考: https://collect.js.org/api/dump.html

相关用法


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