在React Hook里使用history.push跳转

react hook里用不了this.props.history的解决方法

  1. 首先引入
import {
    useHistory } from 'react-router-dom'
  1. 使用
let history = useHistory()
function OnFinish(values: any) {
   
    console.log('Success:', values)
    history.push('/main', {
    dust: 20 })
  }