书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 919 个相关结果.
  • 快速上手

    2850 2019-07-03 《DvaJS 开发手册》
    快速上手 安装 dva-cli 创建新应用 使用 antd 定义路由 编写 UI Component 定义 Model connect 起来 构建应用 快速上手 安装 dva-cli 通过 npm 安装 dva-cli 并确保版本是 0.9.1 或以上。 $ npm install dva - cli - g $ dva...
  • 特殊问题的处理

    title: 特殊问题的处理 title: 特殊问题的处理 Issue #46 ,redux-saga 的引入问题处理 在 H5 模式下,tabBar 可能会挡住页面 fixed 元素问题:这是因为与小程序的 tabBar 不同,在 H5 下 tabBar 是一个普通的组件,当页面中存在fixed(bottom) 定位的元素时,其表现会与小...
  • 特殊问题的处理

    1910 2018-08-19 《Taro 1.1 文档手册》
    特殊问题的处理 特殊问题的处理 Issue #46 ,redux-saga 的引入问题处理 在H5模式下,tabBar可能会挡住页面fixed元素问题:这是因为与小程序的taBbar不同,在H5下tabBar是一个普通的组件,当页面中存在fixed(bottom) 定位的元素时,其表现会与小程序中不一致。Taro提供了一个适配的方法: ...
  • Connector

    Connector Connector 它表达了如何从一个大数据中读取小数据,同时对小数据的修改如何同步给大数据,这样的数据连接关系。 它是将一个集中式的 Reducer,可以由多层次多模块的小 Reducer 自动拼装的关键。 它大大降低了我们使用 Redux 的复杂度。我们不再关心组装过程,我们关心的核心是什么动作促使数据怎么变化。 它使用...
  • package.json

    package.json engines dependenciesMeta dependenciesMeta.*.injected peerDependenciesMeta peerDependenciesMeta.*.optional publishConfig publishConfig.executableFiles publishConf...
  • NavModel

    NavModel interface breadcrumbs property main property node property NavModel interface Interface used to describe different kinds of page titles and page navigation. Navmodel...
  • NavModel

    NavModel interface breadcrumbs property main property node property NavModel interface Interface used to describe different kinds of page titles and page navigation. Navmodel...
  • NavModel

    NavModel interface breadcrumbs property main property node property NavModel interface Interface used to describe different kinds of page titles and page navigation. Navmodel...
  • Request Action监听

    Request Action监听 Request Action监听 在Request Action中,有3个事件可以被其它模型监听onPrepare , onSuccess , onFail 。 // ForthModel.ts import { Model , Effects } from '@redux-model/w...
  • 全局事件总线

    1932 2018-12-05 《Flutter 实战》
    事件总线 事件总线 在APP中,我们经常会需要一个广播机制,用以跨页面事件通知,比如一个需要登录的APP中,页面会关注用户登录或注销事件,来进行一些状态更新。这时候,一个事件总线便会非常有用,事件总线通常实现了订阅者模式,订阅者模式包含发布者和订阅者两种角色,可以通过事件总线来触发事件和监听事件,本节我们实现一个简单的全局事件总线,我们使用单例模式,...