书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 1536 个相关结果.
  • 8.9. reaction

    830 2019-11-25 《MobX 3 中文文档》
    Reaction 选项 示例 Reaction 用法: reaction(() => data, (data, reaction) => { sideEffect }, options?) 。 autorun 的变种,对于如何追踪 observable 赋予了更细粒度的控制。它接收两个函数参数,第一个(数据 函数)是用来追踪并返回数据作为第二...
  • 路由守卫

    路由守卫 写在前面 示例 路由守卫 写在前面 路由守卫可以防止未授权用户访问页面。 路由守卫需要单独对每一个路由进行设置,很多时候这看起来很繁琐,@delon/acl 实现了通用守卫类 ACLGuard ,可以在路由注册时透过简单的配置完成一些复杂的操作,甚至支持 Observable 类型。 使用固定属性 guard 来指定 AC...
  • 进一步阅读和参考

    进一步阅读和参考 Angular TypeScript General Coding Practice and Functional Programming RxJS, Reactive Programming and Observables Redux and ngrx Keeping up to date Other 进一步阅读和参...
  • zip

    zip 演示 zip 通过一个函数将多个 Observables 的元素组合起来,然后将每一个组合的结果发出来 zip 操作符将多个(最多不超过8个) Observables 的元素通过一个函数组合起来,然后将这个组合的结果发出来。它会严格的按照序列的索引数进行组合。例如,返回的 Observable 的第一个元素,是由每一个源 O...
  • delaySubscription

    delaySubscription delaySubscription 进行延时订阅 delaySubscription 操作符将在经过所设定的时间后,才对 Observable 进行订阅操作。
  • 6.10. mobxUtils.createTransformer

    692 2019-11-23 《MobX 5 中文文档》
    createTransformer 使用不可变的、同享的数据结构来追踪可变状态 将数据图转换为响应式数据图 createTransformer 由 mobx-utils 包提供。 createTransformer<A, B>(transformation: (value: A) => B, onCleanup?: (result: B, v...
  • Component Architecture

    Component Architecture Modifying AppComponent to become a smart component Modifying CounterComponent to become a presentation component Component Architecture Our previous Co...
  • 基本代码

    1003 2019-06-10 《minapp 开发文档》
    MyStore.js // MyStore.js 建一个 MobxStore 类 import { MobxStore } from '@minapp/mobx' import { observable } from 'mobx' export class MyStore extends Mo...
  • 使用 MobX

    使用 MobX 安装 API onError isUsingStaticRendering useStaticRendering useLocalStore useAsObservableSource observer Provider inject PropTypes 资源 使用 MobX 自 1.2.0-beta.1 开...
  • HTTP module

    2772 2019-11-16 《Nest.js v6.0 Document》
    HTTP module Configuration Async configuration HTTP module Axios is rich-feature HTTP client that is widely used in dozens of applications. That’s why Nest wraps this package...