书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 7154 个相关结果.
  • GameBanner

    GameBanner 属性 Boolean isDestroyed Object style 方法 Promise GameBanner.show() Promise GameBanner.hide() Promise GameBanner.destroy() GameBanner.onResize(function callback) Gam...
  • Util(常用工具函数/)

    Util (常用工具函数) delay(miliseconds): Promise<void> launchProcess(exePath: string, …args: string[]): ChildProcess; stopProcess(proc: ChildProcess): boolean; takeScreenshot(filePath:...
  • Fetch:中止(Abort)

    正如我们所知道的,fetch 返回一个 promise。JavaScript 通常并没有“中止” promise 的概念。那么我们怎样才能中止 fetch 呢? 为此有一个特殊的内建对象:AbortController ,它不仅可以中止 fetch ,还可以中止其他异步任务。 用法很简单: Step 1:创建一个控制器(controller):...
  • 同步遍历器的问题

    同步遍历器的问题 同步遍历器的问题 《遍历器》一章说过,Iterator 接口是一种数据遍历的协议,只要调用遍历器对象的next 方法,就会得到一个对象,表示当前遍历指针所在的那个位置的信息。next 方法返回的对象的结构是{value, done} ,其中value 表示当前的数据的值,done 是一个布尔值,表示遍历是否结束。 function...
  • DataSourceSrv

    DataSourceSrv interface get method getInstanceSettings method getList method reload method DataSourceSrv interface This is the entry point for communicating with a datasourc...
  • DataSourceSrv

    DataSourceSrv interface get method getInstanceSettings method getList method reload method DataSourceSrv interface This is the entry point for communicating with a datasourc...
  • InterstitialAd

    InterstitialAd 方法 Promise InterstitialAd.show() Promise InterstitialAd.load() InterstitialAd.destroy() InterstitialAd.onLoad(function callback) InterstitialAd.offLoad(function ...
  • Add a Service

    894 2019-09-24 《LoopBack 4 Document》
    Add a Service Installing the proxy-server Writing a service provider Adding our interfaces Navigation Add a Service LB4 has the package @loopback/proxy-server that conta...
  • 异步数据流

    955 2018-02-14 《Redux 中文文档》
    异步数据流 下一步 异步数据流 默认情况下,createStore() 所创建的 Redux store 没有使用 middleware ,所以只支持 同步数据流 。 你可以使用 applyMiddleware() 来增强 createStore() 。虽然这不是必须的,但是它可以帮助你用简便的方式来描述异步的 action 。 像 ...
  • Coroutines

    Coroutines Minimal Coroutine Example Suspend and Resume Resuming from Suspend Blocks Await Open Issues Coroutines A coroutine is a generalization of a function. When y...