forPage()函数用于返回特定页面上存在的值,该函数将页面号作为参数,然后返回集合。在JavaScript中,首先将数组转换为一个集合,然后将该函数应用于该集合。
用法:
data.forPage(x,y)
参数:该函数接受上述两个参数,并在下面进行描述:
- x:此参数保存页码。
- y:此参数保存每页显示的项目数。
返回值:返回一个新的集合。
下面的示例说明了collect.js中的forPage()函数。示例1:在此示例中,我们进行了一个收集,然后使用forPage()函数显示了作为参数给出的页面中的值,并返回该值
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);
const Page= collection.forPage(2, 5);
console.log(Page.all());
输出:
[ 6, 7, 8, 9 ]
范例2:
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);
const Page= collection.forPage(4, 2);
console.log(Page.all());
输出:
[ 7, 8 ]
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- p5.js removeElements()用法及代码示例
- PHP Imagick adaptiveSharpenImage()用法及代码示例
- PHP XMLWriter endDtdEntity()用法及代码示例
注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Collect.js | forPage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。