简述React-Router怎么设置重定向? 在React Router中,我们可以使用<Redirect>组件进行重定向。<Redirect>组件可以接受两个重要的props:from和to,分别用于指定要重定向的来源路径和目标路径。 这里是一个简单的例子,它将从”/old-path”重定向到”/new-path”: import{Route,Redirect}from'react-router-dom';functionA...