react 路由在跳转时,上一个路由地址的滚动条距离会带到下一个路由,所以很多场景下,当跳转到下一个路由时需要滚动到顶部。 // 解决方案 componentWillMount() { window.scrollTo(0, 0); }