umi-plugin-keep-alive icon indicating copy to clipboard operation
umi-plugin-keep-alive copied to clipboard

<KeepAlive> for umijs base on react-activation

Results 32 umi-plugin-keep-alive issues
Sort by recently updated
recently updated
newest added

报错问题: ![image](https://user-images.githubusercontent.com/34501848/95714036-27f81a00-0c9a-11eb-89dd-d08ec178068f.png) 代码片段: ![image](https://user-images.githubusercontent.com/34501848/95714071-37776300-0c9a-11eb-994b-c25d75be8a07.png) ![image](https://user-images.githubusercontent.com/34501848/95714053-31818200-0c9a-11eb-8bf2-bda8f271fc8b.png) 请问还可以通过什么办法进行清楚特定的页面缓存吗?

使用场景: 列表页缓存列表数据。跳转前设置when为true,然后通过histpry.push进行页面跳转 ```typescript const [keepAlive, setKeepAlive] = useState(false); const columns = [ { title: 'xx', render: ({id}) => redirect(id)}>click } ] function redirect(id: number | string) { setKeepAlive(true); history.push(`consumer/${id}`); }...