react-keeper icon indicating copy to clipboard operation
react-keeper copied to clipboard

A routing library of React.

Results 57 react-keeper issues
Sort by recently updated
recently updated
newest added

使用 npm install react-keeper 安装失败;项目机遇vite2.4+react17;错误如下: ![image](https://user-images.githubusercontent.com/53500371/127635563-e869385a-9999-4c52-8ccc-d9c1487f3a52.png)

用了react-keeper,页面中一使用react-hook就会报错 Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons: 1. You might have...

我的框架页面路由是/ ,登录路由是/login 和框架路由平级 框架页面路由下有很多子路由 /list,/list2 现在问题是,如果框架路由写成/> 则直接访问/list 不能展示框架页面,只展示了/list对应的页面 如果框架路由写成/ 则登录页面匹配到的页面为框架页面, 请问这种情况要如何处理?

1.react-keeper有没有类似react-router withRouter的组件,让我能够在页面中获取路由信息。 2.react-keeper的Route匹配规则有没有类似react-router ``` ``` 的匹配规则,主要解决页面跳转动画问题。举例:用react-transition-group做动画,从首页进入列表页面,首页移除,列表页渲染,但是react-transition-group会把首页保留一段时间(做动画使用),但是Route会强行把首页替换成列表页(由于浏览器地址变了),结果是页面上出现2个列表页,这样我根本无法做动画。 3.leaveFilter。举例说明: ``` ``` 从Index页面进入List页面,会触发每个Route的leaveFilter,我认为应该只触发Index-Route的leaveFilter,因为当前就是Index离开了。

hi, 我是第一个提建议的.

react-keeper与mobx-react-router结合不能使用。出现render没有定义。

**问题**: 使用了HashRoute,在Route里面嵌套了两个子页面的Route,结果发现从/页面跳转子页面sub-table时match不到子页面。 **期望:** sub-table等子页面也能正确匹配 **代码:** ``` const Home = () => { const userType: UserPermissionType = getPermissionType(); return ( ); }; const App = () => { return ( );...