zl程序教程

您现在的位置是:首页 >  工具

当前栏目

react组件卸载前的钩子

组件React 卸载 钩子
2023-09-14 09:00:16 时间

参考:https://lequ7.com/2019/01/16/javascript/React-zu-jian-xie-zai-lu-you-tiao-zhuan-ye-mian-guan-bi-shua-xin-zhi-qian-jin-xing-ti-shi/

import {Prompt} from ‘react-router-dom’;
const Editor=()=>{
return (
    <div>
        <Prompt
            //  when相当于disabled,为true时,当react路由跳转就会触发
            when={true}
            message={location => ‘文章要保存吼,确定离开吗?’}
        />
    </div>
   )
}