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

    Histories browserHistory 服务器配置 IE8, IE9 支持情况 hashHistory 我应该使用 createHashHistory 吗? 像这样 ?_k=ckuvup 没用的在 URL 中是什么? createMemoryHistory 实现示例 Histories React Router 是建...
  • 7. 博客、 视频及相关项目

    2972 2019-11-23 《MobX 5 中文文档》
    Awesome MobX Contribution Key materials Table of Contents Official Resources Community Development Tools FAQ Publications Books Videos Tutorials Articles / blogs explaini...
  • FAQ

    FAQ General 是否可用于生产环境? 如何查看 react、react-dom、react-router 等版本号? 如何引入 @babel/polyfill ? 如何动态修改 title ? 报错 Object.values is not a function exports is not defined Plugin umi-p...
  • 如何实现页面间的跳转

    组件跳转 方法调用 1. withRouter 2. history API 本文档介绍使用 react-router 的单页面应用如何实现页面跳转。 组件跳转 通过 <Link /> 标签组件跳转,定义 to 属性完成路径跳转,等同于点击一个 <a /> 标签。 引入标签: import { Link } from...
  • API

    API 路由 umi/link umi/router router.push(path) router.replace(path) router.go(n) router.goBack() umi/navlink umi/redirect umi/withRouter 性能 umi/dynamic dynamic(resolve) dy...
  • Code Splitting

    Code Splitting moduleA.js App.js With React Router Code Splitting Instead of downloading the entire app before users can use it, code splitting allows you to split your code...
  • 路由设计

    category: ICE Design Pro 路由配置 路由生成 基础知识 具体使用 自定义修改路由 title:order: 4 category: ICE Design Pro 路由配置 在模板中,路由与菜单一样也是按照一定的约定进行配置,用来描述路由的结构关系。路由主要分为 路由配置 和 路由生成 两部分: 路由配置:...
  • Posts

    Understanding Ionic 2: Imports Ionic 2 / Angular 2 Concepts Ionic, PouchDB, & SQLite For Storage Advanced Google Maps Background Geolocation Taking Advantage of Observables U...
  • 预加载页面

    预加载页面 <Link>用法 命令式 prefetch 写法 预加载页面 ⚠️ 只有生产环境才有此功能 ⚠️ Examples Prefetching Next.js 有允许你预加载页面的 API。 用 Next.js 服务端渲染你的页面,可以达到所有你应用里所有未来会跳转的路径即时响应,有效的应用 Next.js,可以通过预加载应...
  • alias

    alias alias Type: object Default: {} 配置别名,对引用路径进行隐射。 比如: export default { alias : { 'foo' : '/tmp/a/b/foo' } } 然后 import('foo') ,实际上是 import...