我想让用户在当前路由跳转到别的路由前有一个confirm提示,但是我所有的路由都是用配置文件配置的,不是用react组件写的
代码:
childRoutes: [
{
path: 'manage/cat',
component: CatManager
}, {
path: 'manage/sku',
indexRoute: {
component: SkuManager
},
childRoutes: [
{
path: 'add',
component: SkuCreate,
routerWillLeave: (nextLocation) => {
console.log('react router 路由跳转=======>',nextLocation);
return false;
}
}
]
}
我想让用户在离开/manage/sku/add
路由时执行一些动作,该怎么写?现在这样写并不执行啊
回首忆惘然
相关分类