解決antd pro1 0頁面重新整理後資料丟失

2021-08-22 03:21:43 字數 588 閱讀 8358

原因所在:資料存在modal的state當中,重新整理的時候state資料丟失。

解決方法:將資料的id放入網頁的路由中,每次進入頁面的時候重新請求資料。

**:路由配置:

'/information/pageform/:id':,
從路由中讀取資料:

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/$`));

antd pro 專案登陸頁面i文字框具體配置

src components login map export default 預設的內容提示 placeholder admin 驗證資訊 rules src pages user login import react,from react import from dva import from ...

微信h5頁面返回時ios不重新整理頁面解決方案

解決這一問題想到了vue router,vue router不就是有路由鉤子嗎?它主要用的history的popstate pushstate事件,具體的大家可以自行搜尋用法,其相容性可訪問下面位址檢視,基本大部分都可以支援 還有一種方式就是監聽pageshow和pagehide事件,但是相容性不太...

rails2 3頁面中文亂碼解決方案

剛學習ruby on rails不久,就碰見頁面中文亂碼問題。google後,大家給出的建議都是下面兩步 1.在rhtml檔案中head中加入 2.在對應的控制器中加入 before filter set charset def set charset headers content type te...