解决antd-pro1.0页面刷新后数据丢失

一、刷新后数据消失

原因所在:数据存在modal的state当中,刷新的时候state数据丢失。

解决方法:将数据的id放入网页的路由中,每次进入页面的时候重新请求数据。

代码:

路由配置:

'/information/pageForm/:id':{
    component: dynamicWrapper(app, ['dispute'],() => import('../routes/Dispute/PageForm')),
},

从路由中读取数据:

const pathToRegexp = require('path-to-regexp');
const match = pathToRegexp('/information/pageForm/:id').exec(this.props.location.pathname);

读取到的数据会存在match这个数组当中。

页面跳转代码:
新增时:

this.props.dispatch(routerRedux.push('/information/pageForm/-1'));

编辑时:

this.props.dispatch(routerRedux.push(`/information/pageForm/${record.id}`));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值