书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 7154 个相关结果.
  • Jest 平台工具

    jest-changed-files 例子 jest-diff 例子 jest-docblock 例子 jest-get-type 例子 jest-validate 例子 jest-worker 例子 pretty-format 例子 你可以自由选择Jest的特定功能,并独立使用这些包。 Here’s a list of the...
  • NavController

    NavController 注入NavController 页面展示 生命周期 实例方法 setRoot(page,params,opts) setPages(pages,opts) push(page,params,opts) present(enteringView,opts) insert(insertIndex,page,par...
  • Actors

    Actors Pre-requisites Scenario Actor Interface Actor Implementation Registering Actors Invoking Actor Methods Using states with Actor Actor Timers and Reminders Actor Timers...
  • 交互反馈

    交互反馈 Taro.showToast(OBJECT) Taro.showLoading(OBJECT) Taro.hideToast() Taro.hideLoading() Taro.showModal(OBJECT) Taro.showActionSheet(OBJECT) 交互反馈 Taro.showToast(OBJECT)...
  • Document.prototype.$op

    Document.prototype.$op Type: Example: Document.prototype.$op Type: «property» A string containing the current operation that Mongoose is executing on this document. May ...
  • 异步执行测试

    异步执行测试 异步执行测试 由于服务以异步方式操作,因此异步地执行服务的整个单元测试可能是有用的。 这可以加快完成整个测试周期所需的总时间,因为特定的单元测试不会阻止其他测试的执行。 我们可以设置我们的单元测试来返回一个promise,它将根据测试的结果来返回成功或失败。 describe ( 'verify search' , () =>...
  • Event Reactive

    Event Reactive ES7 Observables Reactive Sequences Event Reactive It should be obvious from (at least!) Chapter 3 that Promises are a very powerful tool in your async toolbox....
  • Session Management

    Session Management TLDR Login Logout Change Session PublicData of Current User Access Session on the Server In Queries & Mutations In getServerSideProps or API Routes Acces...
  • 异步 Generator 函数

    异步 Generator 函数 异步 Generator 函数 就像 Generator 函数返回一个同步遍历器对象一样,异步 Generator 函数的作用,是返回一个异步遍历器对象。 在语法上,异步 Generator 函数就是async 函数与 Generator 函数的结合。 async function * gen () { ...
  • Hooks(钩子/)

    Hooks 标记的 hooks 使用Before Hook跳过场景 BeforeAll / AfterAll Hooks Hooks(钩子) 用于在每个场景之前和之后设置和清理环境。有关传递给Hooks的第一个参数的规范,请参阅 API参考 . 如果定义了多个Before hooks,会按它们被定义的顺序执行。多个 After hooks 按照...