vue 和 react 路由跳转和传参

                 

react 

  1 .跳转方式加传参

this.props.history.push({
      //地址
      pathname: '/film/Details',
      //路由传参--对象
      query: {
        id,
        from: ''
      }
    });

  2.跳转Link

import { Link } from 'react-router-dom';




  

转载于:https://www.cnblogs.com/gfweb/p/9803796.html

你可能感兴趣的:(vue 和 react 路由跳转和传参)