最佳答案
我有 有时会看到的人包装他们的组件在 withRouter
时,他们出口他们:
import { withRouter } from 'react-router-dom';
class Foo extends React.Component {
// ...
}
export default withRouter(Foo);
这是干什么用的,什么时候用?