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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。