2021
04-07
04-07
React Router 如何使用history跳转的实现
在react-router中组件里面的跳转可以用<Link>但是在组件外面改如何跳转,需要用到react路由的historyreplace方法和push方法使用形式一样,replace的作用是取代当前历史记录go,此方法用来前进或者倒退,history.go(-1);goBack,此方法用来回退,history.goBack();goForward,此方法用来前进,history.goForward();1.hookimport{useHistory}from'react-router-dom';functiongoPage(e){history.push({pathname:"/home",stat...
继续阅读 >