1.引入包
import {hashHistory} from ‘React-router'
2.跳轉傳值
handleClick = (value) => {
hashHistory.push({
pathname: 'main/detailMessage',
state: {
id:value.id,
name:value.name,
},
})
}
3.獲取參數
this.props.location.state.id(name)
