书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 12794 个相关结果.
  • Testing Asynchronous Code

    回调 Promises .resolves / .rejects 仅用于jest 20.0.0+ Async/Await 在JavaScript中执行异步代码是很常见的。 当你有以异步方式运行的代码时,Jest 需要知道当前它测试的代码是否已完成,然后它可以转移到另一个测试。 Jest有若干方法处理这种情况。 回调 最常见的异步模式是回调函...
  • 异步流程控制

    异步控制 Promise((resolve, reject) => {}) 参数 async,await 异步控制 你可以使用Promise,async、await来更好的进行异步流的控制。 Promise((resolve, reject) => {}) 参数 resolve:成功回调 reject:失败回调 cons...
  • 异步模块

    631 2018-11-03 《coolie 官方指南》
    if ( isIE8 ) { require . async ( 'compatible-ie8.js' , function ( exports ){ // ... }); } else if ( isIE6 ) { require . async ( 'co...
  • Function Inputs and Outputs

    Function Inputs and Outputs Function Inputs Function Outputs Function Inputs and Outputs Functions usually have inputs and outputs. Function Inputs For a sync function, the ...
  • Implementing Stream

    546 2020-12-25 《Tokio v1.0 Tutorial》
    Implementing Stream async-stream Implementing Stream The Stream trait is very similar to the Future trait. use std :: pin :: Pin ; use std :: task ::{ Context , ...
  • Custom Request and APIRoute class

    Custom Request and APIRoute class Use cases Handling custom request body encodings Create a custom GzipRequest class Create a custom GzipRoute class Accessing the request bod...
  • Custom Request and APIRoute class

    Custom Request and APIRoute class Use cases Handling custom request body encodings Create a custom GzipRequest class Create a custom GzipRoute class Accessing the request bod...
  • Mock Functions

    方法 参考 mockFn.getMockName() mockFn.mock.calls mockFn.mock.results mockFn.mock.instances mockFn.mockClear() mockFn.mockReset() mockFn.mockRestore() mockFn.mockImplementation(...
  • 路径操作装饰器依赖项

    路径操作装饰器依赖项 在路径操作装饰器中添加 dependencies 参数 依赖项错误和返回值 依赖项的需求项 触发异常 返回值 为一组路径操作定义依赖项 全局依赖项 路径操作装饰器依赖项 有时,我们并不需要在路径操作函数中使用依赖项的返回值。 或者说,有些依赖项不返回值。 但仍要执行或解析该依赖项。 对于这种情况,不必在声明路...
  • 与 puppeteer 一起使用

    与 puppeteer 一起使用 Use jest-puppeteer Preset Custom example without jest-puppeteer preset 与 puppeteer 一起使用 通过 Global Setup/Teardown 和 Async Test Environment 这些 API, Jest 可以很丝滑...