reac-router 3.xx版本 (不支持4.0以上版本)
import {Link , IndexLink , hashHistory} from "react-router"
直接使用hashHistory方法就可以
toHome(){
hashHistory.push({
pathname:"/home",
query:{id:this.props.id} //路由传参
})
}
reac-router 3.xx版本 (不支持4.0以上版本)
import {Link , IndexLink , hashHistory} from "react-router"
直接使用hashHistory方法就可以
toHome(){
hashHistory.push({
pathname:"/home",
query:{id:this.props.id} //路由传参
})
}