Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@sishuguojixuefu/iterator

Package Overview
Dependencies
Maintainers
5
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sishuguojixuefu/iterator

让前端分页需求更简单

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
5
Created
Source

@sishuguojixuefu/iterator

让前端分页需求更简单

Installation

$ yarn add @sishuguojixuefu/iterator

Usage

interface

/**
 * 异常记录
 */
static getExceptionRecordsList = async (params: {}, page, size) => {
  const result: {
    data: { id: string; studentGroupName: string; startTime: string; endTime: string; outTime: boolean }[]
    total: number
  } = await request.post('/course/exception-records', { ...params, page, size })
  return result
}

iterator

this.Iterator = createAsyncIterator(getExceptionRecordsList, params, 10)

principle

Iterator接口的实现须满足几个条件:

  • 必须是一个函数,且返回一个对象;
  • 返回的对象须包含一个 next() 方法;
  • next() 方法执行后须返回一个对象,且对象须包含代表成员的 value 属性、表示遍历是否结束的 done 属性。

FAQs

Package last updated on 07 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts